
  function errorbox(msg, url, linenumber){
    var errwindow=window.open("","","width=650,height=200")


    errwindow.document.write("<html>");
    errwindow.document.write("  <head>");
    errwindow.document.write("    <title>DenK Internet Services</title>");
    errwindow.document.write("    <meta name=\"author\" content=\"JP Duits, DenK.biz Internet Services Tiel\" />");
    errwindow.document.write("    <link rel=\"stylesheet\" type=\"text/css\" href=\"./css/style.css\" />");
    errwindow.document.write("  </head>");
    errwindow.document.write("  <body topmargin=10 leftmargin=10>");
    errwindow.document.write("    <strong>JavaScript error</strong><br />")
    errwindow.document.write('    Message: '+msg+' <br />URL: '+url+'<br />Line: '+linenumber)
    errwindow.document.write("  </body>");
    errwindow.document.write("</html>");
    errwindow.document.close()
    return true
  }

  window.onerror=errorbox

