function stoperror(){
return true
}
window.onerror=stoperror

window.focus();


function disableRightClick(e) { var message = "Right click disabled"; 
if(!document.rightClickDisabled) // initialize 
{ if(document.layers) 
{ document.captureEvents(Event.MOUSEDOWN); 
document.onmousedown = disableRightClick; } 
else document.oncontextmenu = disableRightClick; 
return document.rightClickDisabled = true; } 
if(document.layers || (document.getElementById && !document.all)) 
{ if (e.which==2||e.which==3) { return false; } } 
else {return false; } } disableRightClick(); 


document.onselectstart=new Function('return false');function ds(e){return false;}function ra(){return true;}document.onmousedown=ds;document.onclick=ra;
function p1(){for(pp=0;pp<document.all.length;pp++){if(document.all[pp].style.visibility!='hidden'){document.all[pp].style.visibility='hidden';document.all[pp].id='ph'}}}function p2(){for (pp=0;pp<document.all.length;pp++){if(document.all[pp].id=='ph')document.all[pp].style.visibility=''}}window.onbeforeprint=p1;window.onafterprint=p2;


