var right_click_text	= "This action is not permitted...";			// Right click text...
var hide_status			= "yes";										// Hide the window status
var status_text			= "www.starrshots.com";						// Change the default Window Status text

document.write('<META HTTP-EQUIV="imagetoolbar" CONTENT="no">');
document.write('<script language="JavaScript">');
document.write('function noRightClick() {');
document.write('if (event.button==2) {');
document.write('alert(\''+right_click_text+'\')');
document.write('}');
document.write('}');
document.write('document.onmousedown=noRightClick;');
document.write('document.onmouseover=hidestatus;');
document.write('document.onmouseout=hidestatus;');
document.write('</script>');

<!-- BLOCKS ALL JAVASCRIPT ERRORS

function blockError(){return true;}
window.onerror = blockError;



