// CODE FOR DROP-DOWN MENU SUPPORT IN IE6
// ---------------------------------------------------------------------------------------
sfHover = function() {
	var sfEls = document.getElementById("product_menu").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);

// CODE FOR POP-UP FUNCTIONS
// ---------------------------------------------------------------------------------------
function link_popup(url,window_name) {
	window.open(url.href,window_name,'width=770,height=450,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
}
function map_popup(url,window_name) {
	window.open(url.href,window_name,'width=600,height=625,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes');
}



