<!-- Begin
function stopthief(ie) { var warning = "WARNING - All text and images are copyright protected by INACSL.ORG - any contents extracted from this site without express written permission from INACSL is in violation of U.S. Copyright law";
if (navigator.appName == 'Netscape' && ie.which == 3) {
alert(warning);
return false;
}
else
if (navigator.appName == 'Microsoft Internet Explorer' &&
event.button==2) {
alert(warning);
return false;
}
return true;
}
document.onmousedown = stopthief;
// End -->