/* level 1 navigation hack for MSIE */
<!--//--><![CDATA[//><!--
sfHover = function() {
	if(!document.getElementById("nav_L1"))
		return;
	var sfEls = document.getElementById("nav_L1").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);
//--><!]]>

/* level 1 navigation hack for MSIE */
<!--//--><![CDATA[//><!--
sfHover = function() {
	if(!document.getElementById("dropdownState_L1"))
		return;
	var sfEls = document.getElementById("dropdownState_L1").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);
//--><!]]>

// POPUP

var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}

//Show/Hide Dropdown List

function hide(id){
	obj = document.getElementById(id);
	obj.style.display = "none";
}
function show(id){
	obj = document.getElementById(id);
	obj.style.display = "";
}
