// 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;




function popUp(URL,wid,hgh) {
	popwin=window.open("","_blank","'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+wid+",height="+hgh+"'");
	popwin.document.open();
	popwin.document.write('<html><head><title></title></head><body bgcolor=white scroll=no   topmargin=0 leftmargin=0 rightmargin=0 bottomargin=0 marginheight=0 marginwidth=0>  <div style="position: absolute; top:0px;left:0px"><a href="javascript:window.close()">  <img src="'+URL+'" width="'+wid+'" height="'+hgh+'" border="0"></a></div></body></html>');
	popwin.document.close();
}