menuHover = function() {
	var menuEls = document.getElementById("menuDropDown").getElementsByTagName("LI");
	for (var i=0; i<menuEls.length; i++) {
		menuEls[i].onmouseover=function() {
			this.className+=" menuhover";
		}
		menuEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" menuhover\\b"), "");
		}
	}
}
//if (window.attachEvent) window.attachEvent("onload", menuHover);
//if (document.all&&document.getElementById) window.onload=menuHover;
if (document.all) { //MS IE 
	if (window.attachEvent) window.attachEvent("onload", menuHover);
		else { //IE 5.2 Mac does not support attachEvent 
		var old = window.onload; 
	window.onload = function() { if (old) old(); menuHover(); }
	} 
}

function windowPop(url, name, args) {
var root = './flash/popup/';
if (typeof(popupWin) != "object"){
	popupWin = window.open(root+url, name, args+',scrollbars=no, resizable=yes, status=no, top=100, left=25');
	} else {
	if (!popupWin.closed){ 
		popupWin.location.href = root+url;
		} else {
		popupWin = window.open(root+url, name, args+',scrollbars=no, resizable=yes, status=no, top=100, left=25');
	}
}
popupWin.focus();
}
