// Page OnLoad
function PageOnload() {
	StartList();
}



// Drop-down 
function StartList() {
	if (document.getElementById && document.getElementById("DropNav")) {
		navRoot = document.getElementById("DropNav").getElementsByTagName("LI");
		for (i=0; i<navRoot.length; i++) {
			node = navRoot[i];
			if (node.className == "Menu") {
				node.onmouseover=function() {this.className = 'MenuOver';}
				node.onmouseout=function() {this.className = 'Menu';}
			}
		}
	}
}

// Hide selects from Dropdown on IE rollover
function ToggleSelect(state) {
	var dom = (document.getElementById) ? true : false;
	var windows = (navigator.userAgent.toLowerCase().indexOf("windows")>-1) ? true : false;
	var ie5 = ((navigator.userAgent.toLowerCase().indexOf("msie")>-1) && dom) ? true : false;
	var _selects = document.getElementsByTagName("select");
	if (windows && ie5) {
		for (i=0; i<_selects.length; i++) {
			_selects[i].style.visibility = state;
		}
	}
}

function printPartOfPage(elementId) {
    var printContent = document.getElementById(elementId);
    var windowUrl = 'about:blank';
    var uniqueName = new Date();
    var windowName = 'Print' + uniqueName.getTime();
    var printWindow = window.open(windowUrl, windowName, 'left=50000,top=50000,width=0,height=0');
    printWindow.document.write("<link href='/PMPstyles.css' rel='stylesheet' type='text/css' />");
    printWindow.document.write("<img src='http://www.syngentapmp.com/images/header_logo.jpg'/>");
    printWindow.document.write(printContent.innerHTML);
    printWindow.document.close();
    printWindow.focus();
    printWindow.print();
    printWindow.close();
}







