function right(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("WARNING: The content of this website is registered with the US COPYRIGHT OFFICE. Our content may not be reproduced, downloaded, disseminated, published, or transferred in any form or by any means. IF YOU USE IT, WE WILL FIND IT and you will pay us! Please read the LEGAL NOTICE at the bottom of any page.");
return false;
}
return true;
}

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