388Part IIIDocument Objects ReferenceListing 16-10(continued) // (Web site templates) turn on

388Part IIIDocument Objects ReferenceListing 16-10(continued) // turn on error dialogs with hard reloadfunction errOn() { window.onerror = handleError; } // assign default error handlerwindow.onerror = handleError; // error handler when errors are turned off…prevents error dialogfunction doNothing() { return true; } function handleError(msg, URL, lineNum) { var errWind = window.open( , errors , height=270,width=400 ); var wintxt = ; wintxt += An error has occurred on this page. Please report it to Tech Support. ; wintxt +=

; wintxt +=
; wintxt += ; wintxt += ; wintxt +=

; errWind.document.write(wintxt); errWind.document.close(); return true; }

Leave a Reply