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.

114 lines
3.2 KiB

  1. <HTML>
  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="idScript" name="idScript" 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. function OnLoad()
  18. {
  19. TraceFunctEnter("OnLoad");
  20. var szWinDir;
  21. try
  22. {
  23. szWinDir = window.dialogArguments;
  24. if(szWinDir==null)
  25. {
  26. idBody.style.visibility = "hidden";
  27. alert( L_ERRACCESSDENIED_Text );
  28. return;
  29. }
  30. btnOk.focus();
  31. }
  32. catch(error)
  33. {
  34. alert(L_RCCTL_Text);
  35. return;
  36. }
  37. TraceFunctLeave();
  38. }
  39. function OnOk()
  40. {
  41. TraceFunctEnter("OnOk");
  42. try
  43. {
  44. if (idchkremind.checked)
  45. {
  46. window.returnValue=1;
  47. }
  48. else
  49. {
  50. window.returnValue=0;
  51. }
  52. window.close();
  53. }
  54. catch(error)
  55. {
  56. alert(L_RCCTL_Text);
  57. return;
  58. }
  59. TraceFunctLeave();
  60. }
  61. </Script>
  62. <Style>
  63. .cellpadding2
  64. {
  65. padding-top:5px;
  66. padding-left:10px;
  67. padding-right:10px;
  68. padding-bottom:10px;
  69. }
  70. </style>
  71. </Head>
  72. <BODY scroll="auto" id="idBody" class="sys-inlineform-bgcolor1 margin" tabindex="-1" onload="OnLoad();">
  73. <Table id="idTableframe" name="idTableFrame" cellspacing="0" cellpadding="10px" class="MaxLayout" border="0">
  74. <TR>
  75. <TD>
  76. <Table border="0" id="RemindTable" name="RemindTable" cellspacing="0" cellpadding="0">
  77. <TR>
  78. <TD class="Width7 cellpadding2" style="vertical-align='top'">
  79. <img id="idimg1" name="idimg1" src="../common/attention.gif "></img>
  80. </TD>
  81. <TD>
  82. <Table border=0 cellspacing="0" cellpadding="6px" >
  83. <TR>
  84. <TD id="idTd1" name="idTd1">
  85. <Span id="idText1" name="idText1" class="sys-font-body sys-color-body">
  86. You have chosen to use a password: you need to communicate this password to your assistant.
  87. </Span>
  88. </TD>
  89. </TR>
  90. <TR>
  91. <TD id="idTd2" name="idTd2">
  92. <Span id="idText2" name="idText2" class="sys-font-body sys-color-body">
  93. <Input type="Checkbox" name="idchkremind" id="idchkremind" tabindex="1"><Label id="idlblremind" name="idlblremind" For="idchkremind" class="sys-color-body valignmiddle">&nbsp;Don't remind me again</Label>
  94. </span>
  95. </TD>
  96. </TR>
  97. </Table>
  98. </TD>
  99. </TR>
  100. </Table>
  101. </TD>
  102. </TR>
  103. <TR>
  104. <TD align="center" id="idBtnContainer" name="idBtnContainer" colspan="2" class="cellpadding2">
  105. <Button name="btnOk" id="btnOk" onClick="OnOk();" tabindex="2" class="sys-font-body sys-color-body">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Ok&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</button>
  106. </TD>
  107. </TR>
  108. </Table>
  109. </Body>
  110. </HTML>