//Javascript functions

// Popup Window for Photos

function OpenWindow(fName,fURL,dWidth,dHeight,dLeft,dTop,dMenubar,dScrollbars,dResizable) { 
  var fSpec='"location=no,directories=no,status=no,menubar='+dMenubar+',scrollbars='+dScrollbars+',resizable='+dResizable+',copyhistory=no,width='+dWidth+',height='+dHeight+',left='+dLeft+',top='+dTop+'"';        
        window.open(fURL,fName,fSpec); 
} 

startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("navlist");
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;


