<!-- BLOCKS ALL JAVASCRIPT ERRORS

function blockError(){return true;}
window.onerror = blockError;

<!-- BEGIN NO RIGHT CLICK

function noRightClick() {
if (event.button==2) {
alert('Sorry, right click is disabled...')
}
}

// set this only if you want the entire document right click protected
// document.onmousedown=noRightClick

//  END NO RIGHT CLICK -->
