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.
|
|
<HTML> <HEAD> #include "constants.inc" #include "header.inc" #include "debug_js.inc" <TITLE id="idTitle" name="idTitle">REMOTE_ASSISTANCE</TITLE> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta http-equiv="MSThemeCompatible" content="Yes"> <LINK id="UI_StyleSheet1" REL="stylesheet" TYPE="text/css" HREF="Css/rcbuddy.css"> <LINK id="UI_StyleSheet2" REL="stylesheet" TYPE="text/css" HREF="hcp://system/css/shared.css">
<Script id="idScript" name="idScript" language="javascript"> /* * Localizable constants, text and messages */ var L_ERRACCESSDENIED_Text = "Directly launching this page is not allowed. "; var L_RCCTL_Text = "Remote Assistance failed. Please try again. ";
function OnLoad() { TraceFunctEnter("OnLoad"); var szWinDir; try { szWinDir = window.dialogArguments; if(szWinDir==null) { idBody.style.visibility = "hidden"; alert( L_ERRACCESSDENIED_Text ); return; } btnOk.focus(); } catch(error) { alert(L_RCCTL_Text); return; } TraceFunctLeave(); } function OnOk() { TraceFunctEnter("OnOk"); try { if (idchkremind.checked) { window.returnValue=1; } else { window.returnValue=0; } window.close(); } catch(error) { alert(L_RCCTL_Text); return; } TraceFunctLeave(); } </Script> <Style> .cellpadding2 { padding-top:5px; padding-left:10px; padding-right:10px; padding-bottom:10px; } </style> </Head> <BODY scroll="auto" id="idBody" class="sys-inlineform-bgcolor1 margin" tabindex="-1" onload="OnLoad();"> <Table id="idTableframe" name="idTableFrame" cellspacing="0" cellpadding="10px" class="MaxLayout" border="0"> <TR> <TD> <Table border="0" id="RemindTable" name="RemindTable" cellspacing="0" cellpadding="0"> <TR> <TD class="Width7 cellpadding2" style="vertical-align='top'"> <img id="idimg1" name="idimg1" src="../common/attention.gif "></img> </TD> <TD> <Table border=0 cellspacing="0" cellpadding="6px" > <TR> <TD id="idTd1" name="idTd1"> <Span id="idText1" name="idText1" class="sys-font-body sys-color-body"> You have chosen to use a password: you need to communicate this password to your assistant. </Span> </TD> </TR> <TR> <TD id="idTd2" name="idTd2"> <Span id="idText2" name="idText2" class="sys-font-body sys-color-body"> <Input type="Checkbox" name="idchkremind" id="idchkremind" tabindex="1"><Label id="idlblremind" name="idlblremind" For="idchkremind" class="sys-color-body valignmiddle"> Don't remind me again</Label> </span> </TD> </TR> </Table> </TD> </TR> </Table> </TD> </TR> <TR> <TD align="center" id="idBtnContainer" name="idBtnContainer" colspan="2" class="cellpadding2"> <Button name="btnOk" id="btnOk" onClick="OnOk();" tabindex="2" class="sys-font-body sys-color-body"> Ok </button> </TD> </TR> </Table> </Body> </HTML>
|