//<script language="JavaScript" type="text/javascript" src="inc/JSErrors.js"></script>
//<script type="text/javascript">
//<!--
//    window.onerror = errHandler;
//-->
//</script>


	//this line should be the first line in the HEAD script section.
	//the function call can be the last item in the HEAD script section
//window.onerror = errHandler;
	//alert("head init")
	var rtn="";


	function errHandler( msg, url, ln )
	{
		var msgdisp = "Index Error: "+msg+"\nIn File: "+url+"\nAt Line: "+ln+"";

		alert(msgdisp);
		return true;
	/* from "JavaScript in easy steps" by Mike McGrath p. 110
	 *  a Barnes and Nobel publication
	 * arguments assigned by the browser
	 * return tells the browser that the error was handled
	 **********************************************************************/
	}



