// www.wizzardweb.co.uk
onerror=handleErr
var txt=""

function handleErr(msg,url,l)
{
mes="Whooops!... There was an error on this page.\n\n"
mes+="Please accept our applogies on this rare occasion\n\n"
txt+="Error: " + msg + "\n"
txt+="URL: " + url + "\n"
txt+="Line: " + l + "\n\n"
alert(mes+txt)
return true
}