bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
  if ((bName == "Netscape" && bVer >= 3) || 
    (bName == "Microsoft Internet Explorer" && bVer >= 4)) br = "n3"; 
  else br = "n2";
  if (br== "n3") { 
        img0on = new Image();
  img0on.src = "images/but0.gif";
  img0off = new Image();
  img0off.src = "images/but0.gif";
        
  }
function imgAct(imgName) {
  if (br == "n3") {
  document[imgName].src = eval(imgName + "on.src");
  }
}
function imgInact(imgName) {
  if (br == "n3") {
  document[imgName].src = eval(imgName + "off.src");
  }
}

function openWindow(URL)
{
aWindow=window.open(URL,"theWindow","toolbar=0,width=500,height=540,status=yes,scrollbars=yes,resizable=yes,menubar=0"); }

// No Right Click
var message="aloha .::. Copyright © 98-08 .::. Contacting NetWorksOne Now"
function click(e) {
 if (document.all) {
  if (event.button==2 || event.button==3){
   alert(message);
   return false;
  }
 }
 if (document.layers) {
  if (e.which == 3){
   alert(message);
   return false;
  }
 }
}
if (document.layers){
 document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
