<!--
function doError(a1,a2,a3) {
  str = ""
  str += "<TITLE>An error has occurred</TITLE>"
  str += "<FONT FACE='geneva, arial, sans-serif'><FONT COLOR=darkred SIZE=+1>"
  str += "<B>Uh Oh...</B></FONT>"
  str += "<FONT SIZE=-1><BR>Something went wrong while processing this page."
  str += "<P>To help Dead Mike identify the problem, "
  str += "please provide a brief explanation of what you were doing on the page at the time of this error, " 
  str += "and press the SEND button below.  This will help me identify and fix the error."
  str += "<FORM METHOD='POST' ACTION='mailto:bug@deadmike.com?SUBJECT=Bug Report'>"
  str += "Error Description:<BR><TEXTAREA NAME=desc ROWS=5 COLS=30></TEXTAREA>"
  str += "<BR>Your email (optional)<BR><INPUT NAME=email SIZE=30>"
  str += "<INPUT TYPE=hidden name=error VALUE=\"" + a1 + "\">"
  str += "<INPUT TYPE=hidden name=file VALUE=\"" + a2 + "\">"
  str += "<INPUT TYPE=hidden name=line VALUE=\"" + a3 + "\">"
  str += "<INPUT TYPE=hidden name=browser VALUE=\"" + navigator.appName + "\">"
  str += "<INPUT TYPE=hidden name=version VALUE=\"" + navigator.appVersion + "\">"
  str += "<P><INPUT TYPE=SUBMIT VALUE=\"SEND\">&nbsp;&nbsp;<INPUT onclick='window.close();return true;' TYPE=BUTTON VALUE=\"CLOSE\">"
  str += "</FORM></FONT></FONT>"
  var w = window.open("","","width=600,height=400")
  var d = w.document
  d.open() 
  d.write(str)
  d.close()
  return true
}

window.onerror = doError

//-->