<!-- Hide me from lame browsers
//create a function that will return true
function killErrors() {
return true;
}

//use the onError event handler as a property and
//make it equal to the KillErrors function which returns true
window.onerror = killErrors;

// -->


