
//Disable right click 
<!--
//var message="Sorry, that function is disabled.\nThis Page Copyrighted and\nImages and Text protected!\nALL RIGHTS RESERVED";
var message="";
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("return false")
//-->

<!--
function randImage(){

var arrImg = 
	[
	'./_images/image_01.gif',
	'./_images/image_02.gif',
	'./_images/image_03.gif',
	'./_images/image_04.gif',
	'./_images/image_05.gif',
	'./_images/image_06.gif',
	'./_images/image_07.gif',
	'./_images/image_08.gif',
	'./_images/image_09.gif'
	];

var imgRet = arrImg[Math.floor(Math.random()*arrImg.length)];
return imgRet;
}
//-->

  function validateMe() {
    var validName = document.contact.name.value;
	var validEmail = document.contact.email.value;
    if (validName=="") {
	   alert ("Please enter your name.");
	   document.contact.name.focus();
	   return false;
	}
	else if (validEmail=="") {
	   alert ("Please enter your email address.");
	   document.contact.email.focus();
	   return false;
	}
	else {
	   if ((validEmail.indexOf("@") < 1)||(validEmail.indexOf(".") == -1)||(validEmail.indexOf(".") < (validEmail.indexOf("@")+2))||validEmail.charAt(validEmail.indexOf(".")+1)=="") {
	     document.contact.email.focus();
	     alert ("The email you entered is invalid. Please re-enter.");
	     return false;
	   }
	   else {
	     document.contact.submit();
	   }
	}
  }
  
  function NewWindow(url, windowName, w, h, status, scroll) {
     var winl = (screen.availWidth - w) / 2;
     var wint = (screen.availHeight - h) / 2;
     winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',status=' + status +', scrollbars='+scroll+',resizable=0';
     win = window.open(url, windowName, winprops);
     if (parseInt(navigator.appVersion) >= 4) {
        	win.window.focus();
     }
  }