Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
//
// Copyright (c) 2000 Microsoft Corporation
//
var L_Dialog_ErrorMessage = "An error has occurred in this dialog."; var L_ErrorNumber_Text = "Error: ";
//////////////////////////////////////////////////////////////////////
function txtDefaultESC() { if(event.keyCode == 27) { event.cancelBubble = true; event.returnValue = false;
global_Cancel(); return; } }
function fnHandleError( message, url, line ) { var str = L_Dialog_ErrorMessage + "\n\n" + L_ErrorNumber_Text + line + "\n" + message;
try { pchealth.MessageBox( str, "OK" ); } catch(e) { alert(str); }
window.close(); return true; }
function fnInitCommon() { window.onerror = fnHandleError; window.onkeyup = txtDefaultESC; window.onkeydown = txtDefaultESC;
window.onunload = global_Shutdown; }
|