<!--
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 PopupPic(sPicURL) { 
      window.open( "showpic.php?"+sPicURL, "", 
      "resizable=0,HEIGHT=400,WIDTH=300,left=362,top=159"); 
    } 
 
function confirmSubmit()
{
var agree=confirm("Are you sure you wish to delete this item?");
if (agree)
	return true ;
else
	return false ;
}
 
//-->

