// @ tecni.com internet security page protection javascript
function tecnicom_secure_page(e) 
{
 if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2))
   return false;
 else if (navigator.appName == 'Microsoft Internet Explorer' && 
    (event.button == 2 || event.button == 3)) {
    alert(" CopyRight @ 2002 ! :) ");
    return false;
 }
 return true;
}


document.onmousedown=tecnicom_secure_page;
document.onmouseup=tecnicom_secure_page;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=tecnicom_secure_page;
window.onmouseup=tecnicom_secure_page;

// @ tecni.com internet security page protection javascript  

