<!--// Beginning of the script
<!--//

// :: by The Helmsman ::
// This script stops all error messages in users browser
// ..for production only :-)

	function stopError() {
  	return true;
}

	// use the following string in HTML
	// in order to run function
	window.onerror = stopError;
	
	// end of the script
//-->