<!--
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
if (browserName == "Netscape" && browserVer >= 3) 
   version = "n3";
else if (browserName == "Microsoft Internet Explorer" && browserVer >= 4)
   version = "n3";
else 
   version = "n2";

function msover(img1,ref1) {
 if (version == "n3") {
 document.images[img1].src = ref1;
 }
 }
function msout(img1,ref1) {
 if (version == "n3") {
 document.images[img1].src = ref1;
 }
 }
//-->