// JavaScript Document

sfHover = function() {
	if (menuhack){
	var sfEls = document.getElementById("menu").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" over";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" over\\b"), "");
		}
	}
	}
}
//if (window.attachEvent) window.attachEvent("onload", sfHover);

subHover = function() {
	if (menuhack && document.getElementById("submenu")){
	var sfEls = document.getElementById("submenu").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" over";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" over\\b"), "");
		}
	}
	}
}
//if (window.attachEvent) window.attachEvent("onload", subHover);
/********************************************
*open popup windows
*args: page, title,height,width
********************************************/
function openPopup(strURL, strTitle,intWidth,intHeight)
{
  intLeftPosition = (screen.width) ? (screen.width-intWidth)/2 : 0;
  intTopPosition = (screen.height) ? (screen.height-intHeight)/2 : 0;
  window.open(strURL,strTitle,"top="+intTopPosition+",left="+intLeftPosition+",toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=" + intWidth + ", height=" + intHeight);
}
