2025-04-27 07:49:33 -04:00

123 lines
3.4 KiB
HTML

<html>
<head>
<!--
Copyright (c) 2000 Microsoft Corporation
-->
<TITLE>Remote Assistance</TITLE>
<meta http-equiv="MSThemeCompatible" content="Yes">
<LINK REL="STYLESHEET" HREF="../../Css/rcBuddy.css" TYPE="text/css">
</head>
<body id='idBody' onload='DoLoad()' tabindex=-1>
<table class="MaxLayout" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD colspan=2>
<font class="cssHeader">Remote Assistance - Send an Invitation</font><BR><BR>
</TD>
</TR>
<TR>
<TD class="VAlignTop" colspan=2>
<TABLE border=0 class="MaxWidth">
<TR>
<TD width="5%">
<IMG tabindex=-1 src="../../Common/icon_information_32x.gif"></IMG>
</TD>
<TD>
<FONT class="cssTitle">Important Notes</FONT>
</TD>
</TR>
<TR>
<TD>&nbsp;</TD>
<TD>
<FONT class="cssBody">
Before sending an invitation, be sure to read the information below.
</FONT>
</TD>
</TR>
<TR>
<TD colspan=2>
<Table border=0>
<TR>
<TD>&nbsp;</TD>
<TD>
<BR>
<FONT class="cssBody">
<UL Type="square">
<LI>For security reasons, make sure you <STRONG>only send invitations to people you trust</STRONG>.
<P></P>
<LI>Both you and your assistant must be running "Whistler" or later versions of Microsoft Windows. <!--<A href="" class="Cursor" onclick ="parent.LaunchHelp(0);return false;" tabindex=2>supported versions of Microsoft Windows</A>. <IMG class="Cursor" src="icon_extweb.gif"></IMG>-->
<P></P>
<LI>To receive notification that your invitation has been accepted, you must be connected to the Internet. <A href="" class="CURSOR" OnClick="parent.LaunchHelp(1);return false;" tabindex=3>Learn about connection issues...</A>
<P></P>
<LI>If your computer is connected to a corporate network, check with your network administrator before using Remote Assistance.</LI>
</UL>
</FONT>
</TD>
</TR>
</Table>
</TD>
</TR>
</TABLE>
</TD>
</TR>
<TR>
<TD class="VAlignBottom" colspan=2><hr></TD>
</TR>
<TR>
<TD align="left">
<input type="checkbox" Checked id="idHide" name="idHide"><LABEL for="idHide" tabindex=1 name="Link1" id="Link1" ><font class="cssBody">Don't show this page again.</font></LABEL></input>
</TD>
<TD align="right">
<font class="cssAction">
<A href="" OnClick="DoNext();return false;" tabindex=4 >Continue &gt;&gt;</a>
</font>
</TD>
</TR></table>
<TABLE></TABLE>
</body>
<Script Language="JavaScript">
/*
Function : DoShowOverview
Description : This function takes the user to the Introductory page of the Send Invitation Section
*/
function DoNext()
{
parent.TraceFunctEnter("DoNext");
if (idHide.checked)
{ // need to save it and don't show it again.
try
{
var obj = new ActiveXObject("Rcbdyctl.Setting");
obj.SetProfileString("Screen1", "1");
parent.bHasScreen1 = false;
}
catch(error)
{
parent.FatalError(parent.L_RCCTL_MSG ,error);
return;
}
}
navigate("rcScreen3.htm");
parent.TraceFunctLeave();
}
function DoLoad()
{
var L_ERRACCESSDENIED_MSG = "Directly launching this page is not allowed. ";
if( null == parent.TraceFunctEnter )
{
idBody.style.visibility = "hidden";
alert( L_ERRACCESSDENIED_MSG );
return;
}
Link1.focus();
}
</Script>
</html>