var mypage;
function popUp(URL,w,h) {
  var winl = (screen.width - w) / 2;
  var wint = (screen.height - h) / 2;
  mypage = window.open(URL, 'poped', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,top='+(wint - 40)+',left='+winl+',resizable=0,width='+(w-1)+',height='+ (h));
  mypage.focus();
}
function sendit(who,where,tld){
	document.location="mailto:"+tld+"@"+where+"."+who;
}

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;
