function displayWindow(theURL,winName,features, myWidth, myHeight, isCenter) {
  if(window.screen)if(isCenter)if(isCenter=="true"){
  var myLeft = (screen.width-myWidth)/2;
  var myTop = (screen.height-myHeight)/2;
  features+=(features!='')?',':'';
  features+=',scrollbars=0,left='+myLeft+',top='+myTop;
  }
  window.open(theURL,winName,features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);
}

function openWindow(url, name, w, h){
	win = window.open(url,name, "height=" + h +",innerHeight=" + h +",width=" + w + ",innerWidth=" + w);
}

startList = function() {
  if (document.all&&document.getElementById) {
    navRoot = document.getElementById("dropDownNav");
    for (i=0; i<navRoot.childNodes.length; i++) {
      node = navRoot.childNodes[i];
      if (node.nodeName=="LI") {
        node.onmouseover=function() {
          this.className+=" over";
        }
        node.onmouseout=function() {
          this.className=this.className.replace(" over", "");
        }
      }
    }
  }
}
window.onload=startList;
