// JavaScript Document

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;


// Courtesy of SimplytheBest.net (http://simplythebest.net/info/dhtml_scripts.html)
var pop=null
function popswindows(url,name) 
{
	leftP = (screen.width) ? (screen.width-660)/2 : 0;
	topP = (screen.height) ? (screen.height-500)/2 : 0;
  pop=window.open(url,name,"height=500,width=660,top="+topP+",left="+leftP+",scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no");
  pop.focus();
}