113 lines
3.9 KiB
Plaintext
113 lines
3.9 KiB
Plaintext
<HTML>
|
|
<HEAD>
|
|
#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="idScript1" name="idScript1" language="javascript">
|
|
/*
|
|
* Localizable constants, text and messages
|
|
*/
|
|
var L_RCCTL_Text = "Remote Assistance failed. Please try again. ";
|
|
var L_ERRACCESSDENIED_Text = "Directly launching this page is not allowed. ";
|
|
|
|
function WinLoad()
|
|
{
|
|
TraceFunctEnter("WinLoad");
|
|
if( null == parent.OnLoad )
|
|
{
|
|
idBody.style.visibility = "hidden";
|
|
alert( L_ERRACCESSDENIED_Text );
|
|
return;
|
|
}
|
|
TraceFunctLeave();
|
|
}
|
|
|
|
function connect()
|
|
{
|
|
try
|
|
{
|
|
#ifndef _NCW
|
|
var oWShell = new ActiveXObject( "WScript.Shell" );
|
|
oWShell.Run( "icwconn1.exe" );
|
|
#else
|
|
var oShell = new ActiveXObject( "Shell.Application" );
|
|
var sShellCmd_NCW = "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}\\" +
|
|
"::{21EC2020-3AEA-1069-A2DD-08002B30309D}\\" +
|
|
"::{7007ACC7-3202-11D1-AAD2-00805FC1270E}\\" +
|
|
"{44086B2D-BAA3-4fce-949F-53FF664C4AD8}";
|
|
oShell.ShellExecute( sShellCmd_NCW );
|
|
#endif
|
|
}
|
|
catch(error)
|
|
{
|
|
parent.FatalError( L_RCCTL_Text, error);
|
|
}
|
|
}
|
|
|
|
var g_oLearnDlg = null;
|
|
function ShowLearnMore( sURL )
|
|
{
|
|
if( null == g_oLearnDlg )
|
|
{
|
|
g_oLearnDlg = window.showModelessDialog( sURL, window, "help:no;status:no;resizable:no;dialogWidth:385px;dialogHeight:440px" );
|
|
}
|
|
}
|
|
|
|
</Script>
|
|
|
|
|
|
</HEAD>
|
|
<BODY scroll="auto" id="idBody" name="idBody" onload="WinLoad();" class="margin">
|
|
<table class="MaxWidth" id="idtableframe" name="idtableframe" cellpadding="16px" border=0>
|
|
<tr>
|
|
<td>
|
|
<TABLE id="RA_Table" name="RA_Table" class="MaxWidth" border="0" cellspacing="0" cellpadding="0">
|
|
<TR>
|
|
<TD id="idTd1" name="idTd1"><Span id="idMainTitle" name="idMainTitle" class="sys-font-heading3 sys-rhp-color-title ">Remote Assistance</Span></TD>
|
|
</TR>
|
|
<TR>
|
|
<TD class="height9">
|
|
</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD>
|
|
<Div id="idDiv" name="idDiv" class="sys-table-cell-bgcolor3 MaxWidth bordertype1 Height3">
|
|
<Table id="idConnection" name="idConnection" cellspacing="16px" cellpadding="0" class="MaxWidth" border=0>
|
|
<TR>
|
|
<TD class="valignTop">
|
|
<Img id="idimg1" name="idimg1" src="info.gif"></Img>
|
|
</TD>
|
|
<TD id="idTd2" name="idTd2">
|
|
<Span id="idSubtitle" name="idSubTitle" class="sys-font-body-bold sys-color-body">Internet Connection Required</span>
|
|
<P id="idP" name="idP">
|
|
<Span id="idText" name="idText" class="sys-font-body sys-color-body">
|
|
To send a Remote Assistance invitation you must be connected to the internet.To connect to the Internet, click <B>Connect.</B>
|
|
</span>
|
|
<Br>
|
|
<A id="idLink1" name="idLink1" href="" ondragstart="return false;" onclick="ShowLearnMore( 'hcp://hcp://CN=Microsoft%20Corporation,L=Redmond,S=Washington,C=US/Remote%20Assistance/Common/LearnInternet.htm' );return false;" class="sys-font-body sys-link-normal">Learn about connecting to the Internet.</A>
|
|
</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD class="height9">
|
|
</TD>
|
|
</TR>
|
|
<TR>
|
|
<TD id="idbtnContainer" name="idbtnContainer" colspan=2 align="right">
|
|
<button id="btnConnect" name="btnConnect" onclick="connect();" class="sys-font-body sys-color-body"> Connect </button>
|
|
</TD>
|
|
</TR>
|
|
</Table>
|
|
</Div>
|
|
</TD>
|
|
</TR>
|
|
</Table>
|
|
</TD>
|
|
</TR>
|
|
</Table>
|
|
</BODY>
|
|
</HTML>
|