// Millennium script file

// Certain windows for banners, etc.

function banners() {
window.open("banners.php", "banners", "width=700,height=400,scrollbars=1,status=0,resizable=0,toolbar=0");
}

function stars() {
window.open("constellations.php", "stars", "width=808,height=608,scrollbars=0,status=0,resizable=0,toolbar=0");
}

function results() {
window.open("pollresults.php", "results", "width=350,height=470,scrollbars=1,status=0,resizable=1,toolbar=0");
}


// Dropdowns in old versions of IE

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
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;
