<!--  handle any errors
function doError(a1,a2,a3) {
		var str = ""
	if (a1 == null) {
		str += "<TITLE>Feedback!</TITLE>"
		str += "<FONT FACE='geneva, arial, sans-serif'><FONT COLOR=darkred SIZE=+1>"
		str += "<B>Did you find a problem? or Have a Suggestion?</B></FONT>"
		str += "<FONT SIZE=-1>"
		str += "<P>To help Kwik-Search identify the problem or implement your idea, "
		str += "please provide an explanation of what you have detected/suggest.<br>If it is a broken link, please " 
		str += "indicate the category and the search engine name.  Otherwise, please describe the problem/idea with as much detail as possible.<br><br>"
		str += "When you are finished, please press the SEND button below.  Thank you for helping."
		str += "<FORM METHOD='POST' ACTION='mailto:support@kwik-search.com?SUBJECT=Incident Report'>"
		str += "Your description:<BR><TEXTAREA NAME=desc ROWS=7 COLS=60></TEXTAREA>"
		str += "<BR>Your email (optional)<BR><INPUT NAME=email SIZE=30>"
		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()
	} else if (a1.indexOf("NW.location") == -1 && a1.indexOf("opener.location") == -1 &&		// write to (opened/parent) window closed in NS
		a1.indexOf("Unspecified") == -1 && a1.indexOf("unavailable") == -1) {			// (local/remote) write to window closed in IE
		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 Kwik Search 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 us identify and fix the error."
		str += "<FORM METHOD='POST' ACTION='mailto:support@kwik-search.com?SUBJECT=Bug Report'>"
		str += "<br>Error:"+a1+"<br>File:"+a2+"<br>Line:"+a3;
		str += "<br><br>Your 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()
	} else
		reProcess();
	return true;
}
//-->
