<!--
if(document.images)
{
	home1 = new Image
	home2 = new Image
	home1.src = "images/home1.gif"
	home2.src = "images/home2.gif"
		
	about1 = new Image
	about2 = new Image
	about1.src = "images/about1.gif"
	about2.src = "images/about2.gif"
	
	contact1 = new Image
	contact2 = new Image
	contact1.src = "images/contact1.gif"
	contact2.src = "images/contact2.gif"
	
	search1 = new Image
	search2 = new Image
	search1.src = "images/search1.gif"
	search2.src = "images/search2.gif"
	
	sb1 = new Image
	sb2 = new Image
	sb1.src = "images/sb1.gif"
	sb2.src = "images/sb2.gif"
	
	picsbsOn = new Image
	picsbsOff = new Image
	picsbsOn.src = "images/logo4.gif"
	picsbsOff.src = "images/logo3.gif"
}

function chkVer(imagename,objectsrc) {
	var n=navigator.appName
	var v=parseInt(navigator.appVersion)
	var browsok=((n=="Netscape")&&(v>=3))
	var browsok2=((n=="Microsoft Internet Explorer")&&(v>=4))
	if ((browsok)||(browsok2))
	document.images[imagename].src=eval(objectsrc+".src")
}
/*
//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com
//function noClick() {
var message="Function Disabled!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")
//}
*/


// This script and many more are available free online at 
// The JavaScript Source!! http://javascript.internet.com 

/*
function right(e) {
var msg = "Sorry, not available.";
if (navigator.appName == 'Netscape' && e.which == 3) {
alert(msg);
return false;
}
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
alert(msg);
return false;
}
else return true;
}

function trap() 
  {
  if(document.images)
    {
    for(i=0;i<document.images.length;i++)
      {
      document.images[i].onmousedown = right;
      document.images[i].onmouseup = right;
      }
    }
  }

*/
// -->
