/************************************************************
Don Rodger - 2002: http://www.cspinc.com / drodger@cspinc.com

This script may not be reproduced without written permission from the author. Copyright theft is a felony!
*************************************************************/
/*Browsercheck object*/
function right(evnt) {
if (navigator.appName.toUpperCase().match(/NETSCAPE/) != null) {
if (evnt.which >= 2){
alert("The code and material in this website is protected by International Copyright law! \nBy clicking 'OK' you are acknowledging that you have read and understand this notice!");
return false;
}
}
else
if (event.button>=2)
alert("The code and material in this website is protected by International Copyright law! \nBy clicking 'OK' you are acknowledging that you have read and understand this notice!");
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
