﻿// JScript File
function PrintThisPage() 
{ 
   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
       sOption+="scrollbars=yes,width=750,height=600,left=100,top=25"; 
       
   var sWinHTML = document.getElementById('printcontent').innerHTML; 
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
       winprint.document.write('<html><LINK href="../StyleSheet.css" rel="stylesheet" type="text/css"><style type="text/css"><!--div#printimg { margin: 0px 20px 0px 5px; display: none;}--></style><body style="background-color: #FFFFFF; padding: 10px;">'); 
       winprint.document.write(sWinHTML);          
       winprint.document.write('</body></html>'); 
       winprint.document.close(); 
       winprint.focus(); 
}
function OpenPopUp(location, width, height)
{
    window.open(location,"myWindow","width=" + width + ",height=" + height + ",scrollbars=yes");
}
function PreLoadImages()
{
    img1 = new Image();
    img2 = new Image();
    img3 = new Image();
    img4 = new Image();
    img5 = new Image();
    img6 = new Image();
    img7 = new Image();
    img1.src = "/Images/master-nav-about-h.gif";
    img2.src = "/Images/master-nav-contact-h.gif";
    img2.src = "/Images/master-nav-designkits-h.gif";
    img2.src = "/Images/master-nav-distributors-h.gif";
    img2.src = "/Images/master-nav-product-h.gif";
    img2.src = "/Images/master-nav-resources-h.gif";
    img2.src = "/Images/master-nav-support-h.gif";
}

// Perform a rollover.
function Rollover(imageName, source)
{
	// Perform the rollover.
	if (document.images[imageName]) 
	{
		document.images[imageName].src = source;
	}
	
	// Return true;
	return true;
}