// JavaScript No Right Click
function clickIE(){if(document.all){(message);return false;}}
function clickNS(e){if (document.getElementById&&!document.all){if (e.which==2||e.which==3){return false;}}}
document.onmouseup=clickNS;document.oncontextmenu=clickIE;document.oncontextmenu=new Function("return false");
