/***********************************************
* Suppress Right Mouse Click
* NoRightClick - © Walcam Ltd (www.walcam.co.uk)
* This notice MUST stay intact for legal use
* Should be accompanied by 
*    <meta http-equiv="imagetoolbar" content="no">
*    <meta http-equiv="Pragma" content="no-cache">
*    <meta http-equiv="Expires" content="-1">
*    and probably a No_Javascript redirect page
***********************************************/
var mssg="Now, Now Darling - If you want a picture - email me!";

function RclickNS4(e){
  if (document.layers || document.getElementById && !document.all){
    if (e.which==2||e.which==3){
      alert(mssg);
      return false;
    }
  }
}

function RclickIE4(){
  if (event.button==2){
    alert(mssg);
    return false;
  }
}

if (document.layers){
  document.captureEvents(Event.MOUSEDOWN);
  document.onmousedown = RclickNS4;
}
else if (document.all && !document.getElementById){
  document.onmousedown = RclickIE4();
}

document.oncontextmenu = new Function("alert(mssg);return false");

