I want to hide the HTML URL while using print DIV function Please advise if there is any code can be placed in below code to hide HTML URL
<script type="text/javascript">
function PrintDiv() {
var divContents = document.getElementById("dvContents").innerHTML;
var printWindow = window.open('', '', '');
printWindow.document.write('<html><head><style type="text/css">');
printWindow.document.write('body,td,th{font-family: @Arial Unicode MS;font-size:12px;border: 1px solid black;border-collapse:collapse;table-layout:fixed}');
printWindow.document.write('</style></head><body onload="window.print();">');
printWindow.document.write(divContents);
printWindow.document.write('</body></html>');
printWindow.document.close();
winprint.focus();
}
</script>