<!-- BLOCKS ALL JAVASCRIPT ERRORS

// COPYRIGHT 2005 © JR Freelance
// Unauthorized use or sale of this script is strictly prohibited by law

function blockError(){return true;}
window.onerror = blockError;

function noRightClick() {
if (event.button==2) {
alert('You may not right mouse click this page.')
}
}
document.onmousedown=noRightClick

// -->
