function openWindow(url, width, height, left, top)
{
	if (typeof(url) == "number")
		url = "content.asp?id=" + url;
	if (/MACINTOSH/.test(navigator.appVersion) && currentWin)
		currentWin.close();
	if (typeof(left) != "number")
		left = (screen.availWidth-width)/2;
	if (typeof(top) != "number")
		top = (screen.availHeight-height)/2;
	currentWin = window.open(url, "", "top=" + top + ",left=" + left + ",height=" + height + ",width=" + width + ",resizable=no,scrollbars=no,toolbar=no,location=no,menubar=no,status=no");
}            

function cssJsMenu(elemId) 
{
  sfHover = function() {
  var sfEls = document.getElementById("navMenu").getElementsByTagName("LI");
  for (var i=0; i<sfEls.length; i++) {
  sfEls[i].onmouseover=function() {
  this.className+=" ie_does_hover";
  }
  sfEls[i].onmouseout=function() {
  this.className=this.className.replace(new RegExp(" ie_does_hover\\b"), "");
  }
  }
  }
  if (window.attachEvent) window.attachEvent("onload", sfHover);
}

