// JavaScript Document
<!-- Begin
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);

ns3up = (browserName == "Netscape" && browserVer >= 3);
ie4up = (browserName.indexOf("Microsoft") >= 0 && browserVer >= 4);

var cellz = document.getElementsByTagName("TD");
var lnk = document.getElementsByTagName("A");

for(var i = 0; i < lnk.length; i++){
if(lnk[i].parentNode.tagName == "TD"){
var cell = lnk[i].parentNode;
var whereto = lnk[i].href;
cell.onmouseover = function(){this.className = "tdHover";}
cell.onmouseout = function(){this.className = "tdCommon";}
cell.onclick = function(){location.href = whereto;}
}
else{continue};
}

function doPic(imgName,pathfile) {
if (ns3up || ie4up) {
imgOn = (pathfile + "big/" + imgName);
document.mainpic.src = imgOn;
   }
}

//  End -->

