<!--
//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com
//Modified by tpray
var d = new Date();
var year = d.getFullYear();

var messagea="Sorry, right-click is disabled for copyright reasons.  \nShaolin Kungfu Center - HKB Eng Chun Pai [Black Flag Wing Chun] aggressively enforces copyright infringements!  \n\nŠ2005-" + year + " Shaolin Kungfu Center - HKB Eng Chun Pai [Black Flag Wing Chun], All right reserved. \n\n\nAll materials on www.shaolinkungfucenter.comTM or any other site owned by Suhu Lin and HKB Eng Chun PaiTM Organization are protected by Federal copyright and are protected under treaty provisions and worldwide copyright laws. Materials contained in any part of www.shaolinkungfucenter.comTM may not be reproduced, copied, edited, published, transmitted or uploaded in any way without the written permission of HKB Eng Chun PaiTM Organization. With NO EXCEPTION, Suhu Lin and HKB Eng Chun PaiTM  does not grant any express or implied right to you under any of his trademarks, service marks, copyrights or other proprietary information.";

function clickIE4(){
 if (event.button==2){
  alert(messagea);
  return false;
 }
}

function clickNS4(e){
 if (document.layers||document.getElementById&&!document.all){
  if (e.which==2||e.which==3){
   alert(messagea);
   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(messagea);return false")
-->