function printerFriendly(printurl) {
	genPopUp = window.open("","printer","toolbar=no,location=no,scrollbars=yes,directories=no,status=yes,menubar=yes,resizable=yes,width=760,height=600");
	genPopUp.location.href = "/print.asp?printurl="+printurl;
	if (genPopUp.opener == null) genPopUp.opener = window;
	genPopUp.opener.name = "opener";
}



function newWindow(url) {
	genPopUp = window.open("","newWindow","toolbar=yes,location=yes,scrollbars=yes,directories=yes,status=yes,menubar=yes,resizable=yes,width=800,height=600");
	genPopUp.location.href = url;
}




// DROPDOWN SCRIPT
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
