function stopErrors() { return true; }

window.onerror = stopErrors;



/*********** BEGIN UNBLUR ALL LINKS ***************/


function unblur() {

this.blur();

}



function blurLinks() {

if (!document.getElementById) return;

theLinks = document.getElementsByTagName("a");

for(i=0; i<theLinks.length; i++) {

theLinks[i].onfocus = unblur;

}

}