
var mymessage = "Right-click disabled \n\n All Rights Reserved \n\n Hindole Pty Ltd \n The Outback Club and logo's are registered trade marks \n\n Website Development \n Steve JW Roberts \n and the WebDev Team";
function rtclickcheck(keyp){
  if (navigator.appName == "Netscape" && keyp.which == 3) {
    alert(mymessage);
    return false;
  }
  if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) {
    alert(mymessage);
    return false;
  }
}
document.onmousedown = rtclickcheck
//--> 
