// protect.js protect pages from right click Javascript document 

function right(e) {

if (navigator.appName == 'Netscape' && 

(e.which == 2 || e.which == 3)) {

alert('Mouse Right-click is disabled. Website content is copyrighted material. Please contact website administrator regarding your interest in our content.');

return false;

}

else if (navigator.appName == 'Microsoft Internet Explorer' && 

(event.button==2 || event.button == 3)) {

alert('Mouse Right-click is disabled. Website content is copyrighted material. Please contact website administrator regarding your interest in our content.');

return false;

}

return true;

}

document.onmousedown=right;

if (document.layers) window.captureEvents(Event.MOUSEDOWN);

window.onmousedown=right;

// end 
