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

84 lines
2.0 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="MaxWidth" border="0" cellspacing="0" cellpadding="0">
<TR>
<TD colspan=2>
<font class="cssHeader">
Remote Assistance - Send an Invitation
</font>
<P>&nbsp;</P>
</TD>
</TR>
<TR>
<TD style="width:3%">
<Img src="../Common/IM_icon.gif"></Img>
</TD>
<TD>
<font class="cssTitle">
&nbsp; Send an invitation with MSN Messenger Service
</font>
</TD>
</TR>
<TR>
<TD colspan=2>
<BR>
<font class="cssBody">
1.&nbsp;Open <A name="Link1" id="Link1" href="" OnClick="InvokeMSN();return false;" tabindex=1>MSN Messenger Service...</A><P>
2.&nbsp;On the <Strong>Tools</Strong> menu, point to <Strong>Send Invitation </Strong>and click <Strong>To Start Remote Assistance.</Strong> A list of your online contacts will appear.<P>
3.&nbsp;Select the contact of your choice.<P>
</font>
</TD>
</TR>
<TR>
<TD colspan=2>
<BR>
<font class="cssBody">
Your online contact will reply in an instant message.
</font>
</TD>
</TR>
</TABLE>
</BODY>
<script language="javascript">
function InvokeMSN()
{
parent.TraceFunctEnter("InvokeMSN");
try
{
//var o = new ActiveXObject("Messenger.MessengerApp");
//o.Visible = true;
var o = new ActiveXObject("WScript.Shell");
o.Run("msmsgs.exe", 1);
}
catch(error)
{
alert(parent.L_MSN_NOTINSTALLED);
// parent.FatalError("",error);
}
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>