function IEHoverPseudo() {

	var navItems = document.getElementById("primary-nav").getElementsByTagName("li");
	
	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menuparent") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuparent"; }
		}
	}

}

function openNewWindow(fileName,windowName,menubar,theWidth,theHeight)
{
	window.name = 'WinMain';
	cyber = window.open(fileName,windowName,"toolbar=0,location=0,directories=0,status=0,menubar="+menubar+",scrollbars=1,resizable=1,width="+theWidth+",height="+theHeight);
	if (window.focus)
		cyber.focus();
}
