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.

108 lines
2.6 KiB

  1. <HTML XMLNS:helpcenter>
  2. <HEAD>
  3. #include "constants.inc"
  4. #include "header.inc"
  5. #include "debug_js.inc"
  6. <TITLE id="idTitle" name="idTitle">REMOTE_ASSISTANCE</TITLE>
  7. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  8. <meta http-equiv="MSThemeCompatible" content="Yes">
  9. <LINK id="UI_StyleSheet1" REL="stylesheet" TYPE="text/css" HREF="../Css/rcbuddy.css">
  10. <LINK id="UI_StyleSheet2" REL="stylesheet" TYPE="text/css" HREF="hcp://system/css/shared.css">
  11. <SCRIPT id="idScript1" name="idScript1" Language="JavaScript">
  12. /*
  13. * Localizable constants, text and messages
  14. */
  15. var L_ERRACCESSDENIED_Text = "Directly launching this page is not allowed. ";
  16. var L_RCCTL_Text = "Remote Assistance failed. Please try again. ";
  17. var szWinDir;
  18. function InitHelp()
  19. {
  20. TraceFunctEnter("InitHelp");
  21. var szURL = null;
  22. var nIndex = null;
  23. var nMsg = null;
  24. try
  25. {
  26. szWinDir = window.dialogArguments;
  27. if(szWinDir==null)
  28. {
  29. idBody.style.visibility = "hidden";
  30. alert( L_ERRACCESSDENIED_Text );
  31. return;
  32. }
  33. }
  34. catch(error)
  35. {
  36. alert(L_RCCTL_Text);
  37. return;
  38. }
  39. try
  40. {
  41. szURL = window.document.URL;
  42. nIndex = szURL.indexOf("?", 1);
  43. nMsg = szURL.slice(nIndex+1);
  44. switch (nMsg)
  45. {
  46. case "0":
  47. document.all("Container").src="rcMoreInfo.htm";
  48. break;
  49. case "1":
  50. document.all("Container").src="../Escalation/Email/rcDetails.htm";
  51. break;
  52. case "2":
  53. document.all("Container").src="ConnIssue.htm";
  54. break;
  55. }
  56. }
  57. catch(error)
  58. {
  59. alert(L_RCCTL_Text);
  60. return;
  61. }
  62. TraceFunctLeave();
  63. return;
  64. }
  65. </SCRIPT>
  66. <style>
  67. .height11
  68. {
  69. height:95%;
  70. }
  71. .width13
  72. {
  73. width:350px;
  74. }
  75. .cellpadding1
  76. {
  77. padding:8px;
  78. }
  79. </style>
  80. </HEAD>
  81. <BODY id="idBody" name="idBody1" class="margin" scroll=no Onload="InitHelp();">
  82. <Table class="MaxLayout" cellspacing="0" cellpadding="0" border="0">
  83. <TR>
  84. <TD id="idTd1" name="idTd1" class="MaxWidth Height11">
  85. <IFrame id="Container" tabindex="2" name="Container" class="MaxLayout" src="" frameborder=0></IFrame>
  86. </TD>
  87. </TR>
  88. <TR>
  89. <TD>
  90. <HR id="idHr" name="idHr" class="bordertype1 sys-toppane-color-border width13">
  91. </TD>
  92. </TR>
  93. <TR>
  94. <TD id="idbtn" name="idbtn" align="right" class="valignmiddle cellpadding1">
  95. <Button name="btnClose" id="btnClose" Onclick="window.close();" class="sys-color-body sys-font-body" tabindex="1">&nbsp;&nbsp;&nbsp;&nbsp;Close&nbsp;&nbsp;&nbsp;&nbsp;</Button><Span id="idSpace" name="idSpace" class="width7"></Span>
  96. </TD>
  97. </TR>
  98. </Table>
  99. </BODY>
  100. </HTML>