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("These pages represent more hours of work than we\'d like to admit.  As such, please respect\n\
our work and not steal it.  If you\'d like to use some of the material here, just review our\n\
usage policy in the copyright notice linked at the bottom of the page and drop us a line.\n\
That\'s all we ask.  Thanks.");
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;
