// 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 openWin(img, title, caption) {
  winId = window.open('','newwin','width=880,height=700');
  winId.document.write('<head><title>.:' + title + ':.</title><link rel="stylesheet" href="styles.css" type="text/css" /></head>');
  winId.document.write('<body onLoad="if (window.focus) window.focus()"><center>');
  winId.document.write('<p>' + caption + '</p>');
  winId.document.write('<p><img src="' + img + '"><br></p>');
  winId.document.write('<p><a href="#" onclick="self.close();return false;">Close Window</a>');
  winId.document.write('</p></center></body>');
  winId.document.close();
}

