<!-- BLOCKS NOTIFICATION OF ALL JAVASCRIPT ERRORS

// COPYRIGHT 2005-07 © Brad Wardle www.bncgroup.com
// Unauthorized use or sale of this script is strictly prohibited by law

// ----------------------------------------------
// DO NOT CHANGE ANYTHING ON THE NEXT THREE LINES
// ----------------------------------------------
function blockError(){return true;}
window.onerror = blockError;
var is_js = null
// ----------------------------------------------
// DO NOT CHANGE ANYTHING ABOVE THIS LINE
// ----------------------------------------------

// MAKE ANY CHANGES NECESSARY BELOW THIS LINE





// Disable Right-Click function        YOU CAN TURN THIS ON OR OFF


// CHANGE THE VARIABLE TO "no" OR "yes" TO TURN THE OPTION OFF OR ON


var disable_right_click	= "yes"					// RIGHT CLICK PROTECTION yes=ON no=OFF
var alert_message	= "Unknown Command. Press OK to continue"	// RIGHT CLICK MESSAGE


// --------------------------------------------------
// YOU DO NOT NEED TO CHANGE ANYTHING BELOW THIS LINE
// --------------------------------------------------





// document.write('<link rel="shortcut icon" href="favicon.ico" >');
// document.write('<link rel="icon" href="animated_favicon1.gif" type="image/gif" >');
















function noRightClick() {
if (event.button==2) {
alert(alert_message)
}
}
this.disable_right_click=this.disable_right_click.toLowerCase();
   if (disable_right_click == "yes") {
document.onmousedown=noRightClick
}



// -->
