startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("mainnav");
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;

var newWindow = null
function pops(gotoUrl)
{
	if(!newWindow || newWindow.closed)
	{
	   newWindow = open(gotoUrl,"window","width=700,height=480,resizable=no,toolbar=no,menubar=no,scrollbars=yes,status=yes,left=0,top=0");
	}
	else
	{
	   newWindow.location = (gotoUrl);
	   newWindow.focus();
	}
}