startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("menu");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="DIV") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}

window.onload=startList;


function popUpWin(url,name,width,height,scroll,resize,status)
{
  var winW = (screen.width - width) / 2;
  var winH = (screen.height - height) / 2 - 35;
  win = window.open(url,name,'width='+width+',height='+height+',top='+winH+',left='+winW+',scrollbars='+scroll+',resizable='+resize+',status='+status+'')
  if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}