
<!-- BLOCKS ALL JAVASCRIPT ERRORS

function blockError(){return true;}
window.onerror = blockError;


<!-- NO RIGHT MOUSE CLICK

function noRightClick() {
if (event.button==2) {
alert('Right mouse click function is not available on this page.')
}
}
document.onmousedown=noRightClick



// -->