<!--
//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.  \nThe Official Shaolin HKB International aggressively enforces copyright infringements!  \n\n(C)2005-" + year + " Shaolin Kungfu Center - The Official Shaolin HKB, All Rights Reserved. \n\n\nAll materials on www.shaolinhkb.com or www.shaolinkungfucenter.com or any other site owned by Suhu Kenneth Lin Xiang Fuk, HKB Eng Chun Pai Organization and The Official Shaolin HKB International Association are protected by Federal copyright and are protected under treaty provisions and worldwide copyright laws. Materials contained in any part of this website may not be reproduced, copied, edited, published, transmitted or uploaded in any way without the written permission of HKB Eng Chun Pai Organization and The Official Shaolin HKB International. With NO EXCEPTION, Suhu Lin, HKB Eng Chun Pai and The Official Shaolin HKB  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")
-->
