<!-- Begin
function stopthief(ie) { var warning = "**THEFT WARNING** - Sorry, but you are not allowed to steal content from the the Denver NorthHigh website!  Your internet IP address & date have been logged in our database for use by our legal counsel and FBI if needed.";
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 -->