//**************************************
//     
// Name: Block All JavaScript Alerts
// Description:Get rid of all your JavaScript
//     Alerts. You can use this code in any
//     page and it will stop the browser show-
//     ing that your code or your popups code 
//     has any JavaScript errors in it. Only 6 
//     lines of code!
// By: Aidan Dunbar
//
// Side Effects:It is unadvisable that you
//     put this code into your page before it
//     is ready to be published, as it will
//      affect the script debugging...
//
//This code is copyrighted and has
// 	   limited warranties.Please see http://
//     www.Planet-Source-Code.com/vb/scripts/Sh
//     owCode.asp?txtCodeId=3262&lngWId=2//for details.
//***************************************
   

function blockError(){return true;}
window.onerror = blockError;
