window.onerror = null;

bVer = parseInt(navigator.appVersion)



if (bVer >= 3)   ver = "n3"

else   ver = "n2"




if (ver == "n3") 

{

function gotoUrl(url) { if (url != "") location=url }

home_on = new Image(92,24)

	home_on.src = "../../../../Buttons/home_on.gif"

	home_off = new Image(92,24)

	home_off.src = "../../../../Buttons/home.gif"

inspire_on = new Image(120,25)
	inspire_on.src = "../../../Buttons/inspire_on.gif"
	inspire_off = new Image(120,25)
	inspire_off.src = "../../../Buttons/inspire.gif"

}



function jp_power(imgDocID1,imgObjName1) 

	{  

	if (ver == "n3") 

	{ 

		if ( imgObjName1 != null )

		{document.images[imgDocID1].src = eval(imgObjName1 + ".src")

	 	}

	}

}





if (window.Event)
  document.captureEvents(Event.MOUSEUP);

function nocontextmenu() {
  event.cancelBubble = true, event.returnValue = false;

  return false;
} 

function norightclick(e) {
  if (window.Event) {
    if (e.which == 2 || e.which == 3) return false;
  }
  else if (event.button == 2 || event.button == 3) {
    event.cancelBubble = true, event.returnValue = false;
    return false;
  }
}

if (document.layers)
  document.captureEvents(Event.MOUSEDOWN);

document.oncontextmenu = nocontextmenu;
document.onmousedown = norightclick;
document.onmouseup = norightclick;
//-->

<!--
// No rightclick script v.2.5
// (c) 1998 barts1000
// barts1000@aol.com
// This script and others available free at http://www.lissaexplains.com


var message=" "; // Message for the alert box

// Don't edit below!

function click(e) {
if (document.all) {
if (event.button == 2) {
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;
