<!--
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", "");
   }
   }
  }
 }
}

function openwin(winame,file,height,width)  
{

newpop=window.open(file,winame,"status=no,scrollbars=no,resizable=no, toolbar=no,location=no,menu=no,height="+height+",width="+width);
if (document.all){
newpop.moveTo(0,0)

}

}

function changeImage(img) {
 
 var imageName;
 for (i = 1; i <= 5; i++) {
  imageName = "image" + i; 
  if (document.getElementById(imageName)) {
   document.getElementById(imageName).style.display='none';
  }
 }
 
 document.getElementById(img).style.display='block';
 
}
-->

