
function DoPrint()
		{
			document.domain = "flukenetworks.com";	
			var prtContent = document.getElementById("printDiv");
			var WinPrint = window.open('/fnet_www/CommonControls/PrintPage.htm','','left=100,top=100,width=600,height=500,toolbar=0,scrollbars=1,status=0');
			WinPrint.blur();
			/*WinPrint.document.write('<HTML><HEAD>');
			WinPrint.document.write('<LINK HREF="/fnet_www/css/fnet.css" TYPE="text/css" REL="stylesheet">');
			WinPrint.document.write('</HEAD><BODY>');
			WinPrint.document.write(prtContent.innerHTML);
			WinPrint.document.write('</BODY></HTML>');
			WinPrint.document.close();*/
			//WinPrint.focus();
			//WinPrint.print();
			//WinPrint.close();
		}
		
		function PopItUp(sURL,W,H){
            window.open(sURL,'','status=no,height='+H+',width='+W+',scrollbars=1,resizable=1,toolbar=0');
        }
        
        function PopNoScroll(sURL,W,H){
            window.open(sURL,'','status=no,height='+H+',width='+W+',scrollbars=0,resizable=0,toolbar=0');
        }
        function PopItUpFullSize(sURL){
            window.open(sURL,'','');
        }
        
        function hideDiv(thediv)
		{
			document.getElementById(thediv).style.display = 'none';
		}

		function showDiv(thediv)
		{
			document.getElementById(thediv).style.display = 'block';
		}

        