- numerous bug fixes
 - wtv-mail system
 - user account updates
 - viewergen alpha (experimental webtv viewer patcher on pc_service)
 - implement wtv-favorites with huge help from @JarHead4
 - add wtv-ticket store api
 - Bump vm2 from 3.9.5 to 3.9.7 in /zefie_wtvp_minisrv
 - fix bf0app default rom
 - Add wtv-1800 service to wtv-1800:/noflash
 - handle webtvism:
   - allow get/post variables to be the same name multiple times
   - rather than overwrite, the server will now change the variable from a string to an array.
 - Rewrite script processing a bit
   - Instead of using eval() we now use a proper VM Context
   - As a result, any scripting errors will now give a more useful filename and line number.
   - However, some things may break, if they are dependant on variables we are not allowing in the context.
 - BREAKING CHANGES:
   - `ssid_sessions[socket.ssid]` is now `session_data`
   - `require` is no longer allowed in user scripts
 - add star service
 - change how we handle modules for services in the VM
 - fixed wtv-disk:/sync always failed the first time
 - implement production-like wtv-star handling (when a service port becomes unavailable, it requests the url over the wtv-star port to show an error page)
 - renamed WTVDownloadList.js to WTVDisk.js
 - a bit more work on WTVNews (created class)
 - probably more stuff I can't remember
This commit is contained in:
zefie
2021-11-10 23:38:15 -05:00
parent 4544e815cb
commit 1165b245ce
1411 changed files with 31570 additions and 2198 deletions

View File

@@ -0,0 +1,82 @@
data = `
<html>
<head>
<title>Access is restricted</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Access is restricted&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
This message means that
the publisher has restricted access to a page,
and will not allow you to see it.
<p>
Publishers sometimes restrict access to
limit the use of their information.
<p>
In general, it won't help to try again.
<p>
<font size=-1>
<i>Technical details</i><br>
This is result&nbsp;&nbsp;<tt>403 Forbidden</tt>.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="client:goback"
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,88 @@
data = `
<html>
<head>
<title>Missing publisher's name</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Missing publisher's name&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
Web addresses generally include a publisher's
name after the colon. This name is often called
a <i>host</i> name. In this address, <B>www.npr.org</B>
is the publisher's name:
<table>
<tr>
<td height=8>
<tr>
<td width=10>
<td><tt>http://<b>www.npr.org</b>/news/</tt>
</table>
<p>
This message appears if you don't include the publisher's
name in an address that you type.
<p>
<font size=-1>
<i>Technical details</i><br>
This is result&nbsp;&nbsp;<tt>400 Bad Request</tt>.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="client:goback"
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,82 @@
data = `
<html>
<head>
<title>Publisher problem</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Publisher problem&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
This message means that
the publisher's computer experienced a technical
problem while it was trying to send you information.
<p>
This can occur because of a mistake made by the
author of a page or by the publisher.
You might want to try getting the page again,
though this problem is likely to happen again.
<p>
<font size=-1>
<i>Technical details</i><br>
This is result&nbsp;&nbsp;<tt>500 Internal Server Error</tt>.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="client:goback"
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,83 @@
data = `
<html>
<head>
<title>Page was not found</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Page was not found&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
This message means that
the publisher could not find
a particular page that was requested.
<p>
If you were typing in a Web address, you
can check the address to make sure it is accurate.
<p>
This message also appears if a page's author
mistyped the address of another page.
<p>
<font size=-1>
<i>Technical details</i><br>
This is a server result&nbsp;&nbsp;<tt>404 Not Found</tt>.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="client:goback"
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,81 @@
data = `
<html>
<head>
<title>Publisher is too busy</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Publisher is too busy&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
This message means that
the publisher of the page you're trying to reach
is so busy sending pages to other people on the
Internet that it can't handle your request right now.
<p>
Try again in a minute or two, and the publisher
might be less busy. Many publishers are busiest in the mid-morning and early evening.
<p>
<font size=-1>
<i>Technical details</i><br>
This is result&nbsp;&nbsp;<tt>503 Service Unavailable</tt>.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="client:goback"
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,242 @@
data = `<html><head>
<script>
<!-- navigation functions -->
function doSubmit(gvnStr) {
document.formInfo.action=gvnStr;
document.formInfo.submit();
}
function goToMainIndex() {
indexStr = "wtv-guide:/help?topic=Index&subtopic=Main&page=1";
history.go(indexStr);
location.href = "wtv-tricks:/help?topic=Index&subtopic=Main&page=1";
}
function tryApp() {
location.href = unescape(document.formInfo.tryItUrl.value);
}
</script>
<title>Billing</title>
</head>
<body hspace="0" vspace="0" fontsize="medium" noscroll="" vlink="#cccccc" text="#c6bd6c" link="#cccccc" bgcolor="#00292f">
<form name="formInfo" method="get">
<input type="hidden" name="userName">
<input type="hidden" name="ACHinfo">
<input type="hidden" name="boxKind">
<input type="hidden" name="tryItLabel">
<input type="hidden" name="tryItUrl">
</form>
<script>
if (document.formInfo.boxKind.value == 'Classic')
boxtype = '!classic!'
else if (document.formInfo.boxKind.value == 'Plus')
boxtype = '!plus!'
else if (document.formInfo.boxKind.value == 'BPS')
boxtype = '!bps!'
else if (document.formInfo.boxKind.value == 'EchoStar')
boxtype = '!echostar!'
else if (document.formInfo.boxKind.value == 'LC25')
boxtype = '!lc25!'
else
boxtype = '!other!'
if (boxtype != "!other!") {
var allCookies = document.cookie;
var pos = allCookies.indexOf("logon");
if (pos == -1 ) {
document.cookie = "logon=" + document.formInfo.userName.value + "; path=/; domain=webtv.net";
}
pos = allCookies.indexOf("boxtype");
if (pos == -1 ) {
document.cookie = "boxtype=" + document.formInfo.boxKind.value + "; path=/; domain=webtv.net";
}
pos = document.URL.indexOf("/forms/");
if (pos == -1)
document.cookie = "hcurl=" + document.URL + "; path=/; domain=webtv.net";
}
</script>
<table cellspacing="0" cellpadding="0">
<tbody><tr>
<td width="560" valign="top" height="96">
<table width="560" height="96" cellspacing="0" cellpadding="0" background="wtv-tricks:/ROMCache/helpMasthead.swf">
<tbody><tr>
<td rowspan="2" width="107" valign="top" height="96">
<spacer type="vertical" height="7"><br>
<spacer type="horizontal" width="7">
<a href='wtv-tricks:/home'>
<img src='wtv-tricks:/ROMCache/WebTVLogoJewel.gif' width=87 height=67>
</spacer></spacer></td><td width="453" valign="top">
<spacer type="vertical" height="54"><br>
<spacer type="horizontal" width="108">
<font size="+3" color="DDDDDD"><blackface>
Billing
</blackface></font>
<spacer type="vertical" height="0"><br>
</spacer></spacer></spacer></td></tr><tr>
<td align="right">
<table cellspacing="0" cellpadding="0">
<tbody><tr>
<td width="12">
<script>
if (boxtype != "!other!") {
document.write("<img width=7 height=7 src='wtv-tricks:/ROMCache/UtilityBullet.gif' align=absmiddle>");
}
</script>
<spacer type="horizontal" width="10">
</spacer></td><td width="110" valign="top">
<script>
if (boxtype != "!other!") {
document.write("<a href='javascript:goToMainIndex()'>");
document.write("<font size=2>Main index</font></a>");
}
</script>
</td><td width="12">
<img src="wtv-tricks:/ROMCache/UtilityBullet.gif" width="7" height="7" align="absmiddle"><spacer type="horizontal" width="10">
</spacer></td><td width="130" valign="top">
<a href="javascript:doSubmit('http://askwebtv.webtv.net/index.asp')"><font size="2">Find an answer</font></a>
</td></tr></tbody></table>
</td></tr></tbody></table>
</td></tr></tbody></table>
<table frame="" width="560" height="235" cellspacing="2" cellpadding="0">
<tbody><tr>
<td width="60"><spacer type="horizontal" size="60"></spacer></td>
<td valign="top"><font color="#dddddd"><br>
</font><font color="#70954b"><b>
<table frame="" width="487" cellspacing="0" cellpadding="0">
<tbody><tr>
<td width="250" height="10">
</td><td width="20">
</td><td width="250">
</td><td width="20">
</td></tr><tr>
<td valign="top">
<script language="JAVASCRIPT">
var AnsBoxType = new Array();
var AnsHasEmail = new Array();
var MenuChoiceUrl = new Array();
var MenuChoiceUrlOther = new Array();
var MenuChoiceTitle = new Array();
var MenuChoiceSubhead = new Array();
var linkHTML1 = '<table width=250 selected href=';
if (boxtype == '!other!')
var linkHTML2 = '><tr><td rowspan=2 valign=top><font color=#70954b>&#149;<td valign=top><b><font color=#70954b>';
else
var linkHTML2 = '><tr><td rowspan=2 valign=top><font color=#70954b>&#128;<td valign=top><b><font color=#70954b>';
var linkHTML3 = '</font><tr><td valign=top><font color=#cccccc>';
var linkHTML4 = '</table><spacer type=vertical height=10><br>';
function writeLinkTable(ind) {
document.write(linkHTML1);
document.write(MenuChoiceUrl[ind]);
document.write(linkHTML2);
if (boxtype == '!other!')
document.write('<a href=' + MenuChoiceUrlOther[ind] + '><font color=#70954b>' + MenuChoiceTitle[ind] + '</font></a>');
else
document.write(MenuChoiceTitle[ind]);
document.write(linkHTML3);
document.write(MenuChoiceSubhead[ind]);
document.write(linkHTML4);
}
AnsHasEmail[0] = '';
AnsBoxType[0] = '';
MenuChoiceUrl[0] = "javascript:doSubmit('http://help.webtv.net/business/account.html')";
MenuChoiceUrlOther[0] = "'http://help.webtv.net/business/account.html'";
MenuChoiceTitle[0] = "Account information";
MenuChoiceSubhead[0] = "balance, payment info, updating";
AnsHasEmail[1] = '';
AnsBoxType[1] = '';
MenuChoiceUrl[1] = "javascript:doSubmit('http://help.webtv.net/business/billing.html')";
MenuChoiceUrlOther[1] = "'http://help.webtv.net/business/billing.html'";
MenuChoiceTitle[1] = "Billing";
MenuChoiceSubhead[1] = "cost, payment types, additional charges";
AnsHasEmail[2] = '';
AnsBoxType[2] = '';
MenuChoiceUrl[2] = "javascript:doSubmit('http://help.webtv.net/business/cancelservice.html')";
MenuChoiceUrlOther[2] = "'http://help.webtv.net/business/cancelservice.html'";
MenuChoiceTitle[2] = "Canceling the service";
MenuChoiceSubhead[2] = "how to cancel your subscription to WebTV";
AnsHasEmail[3] = '';
AnsBoxType[3] = '';
MenuChoiceUrl[3] = "javascript:doSubmit('http://help.webtv.net/business/giftcard.html')";
MenuChoiceUrlOther[3] = "'http://help.webtv.net/business/giftcard.html'";
MenuChoiceTitle[3] = "Gift Card";
MenuChoiceSubhead[3] = "Purchase the gift of WebTV";
vClassic = 4;
vPlus = 4;
bHasEmail = 0;
vHasEmail = 0;
if (boxtype == '!classic!')
vCount = vClassic;
else
vCount = vPlus;
if ((vCount % 2) == 0)
vMid = vCount - 2;
else
vMid = vCount - 3;
for(var loop = 0; loop < vCount; loop++) {
if (AnsHasEmail[loop] == '' || showMail == '' || (showMail == 'true' && AnsHasEmail[loop] == 'True'))
if (AnsBoxType[loop] == '' || AnsBoxType[loop].indexOf(boxtype) >= 0 || boxtype == '!other!') {
writeLinkTable(loop);
}
if (loop == (vMid / 2)) {
document.write("<td valign=top><td valign=top>");
}
}
</script>
</spacer></spacer></td></tr></tbody></table>
</b></font></td></tr></tbody></table>
<table width="560" cellspacing="0" cellpadding="0">
<tbody><tr>
<td valign="top" align="right">
<form id="form1" name="form1">
<font color="ffcf69"><shadow>
<script>
if (boxtype != "!other!") {
<!-- draw Try It button if the info has been passed from the service -->
appUrl = document.formInfo.tryItUrl.value;
if (appUrl != "" ) {
if ( appUrl.substring(0,10) == "wtv-tricks" ) {
if ( document.formInfo.tryItLabel.value.length == 4 ) {
document.write("<input onclick='tryApp()' value='Try " + document.formInfo.tryItLabel.value + "' borderimage='file://ROM/Borders/ButtonBorder2.bif' type=button usestyle width=110>");
} else {
document.write("<input onclick='tryApp()' value='Try " + document.formInfo.tryItLabel.value + "' borderimage='file://ROM/Borders/ButtonBorder2.bif' type=button usestyle>");
}
document.write("<spacer type=horizontal width=20>");
}
}
}
</script>
<input selected="" onclick="history.go(-1)" value="Done" borderimage="file://ROM/Borders/ButtonBorder2.bif" type="button" usestyle="" id="button1" name="button1" width="110">
</shadow></font>
</form>
</td><td width="19">
</td></tr><tr>
<td height="20">
</td></tr></tbody></table>
</body></html>
`;

View File

@@ -0,0 +1,106 @@
data = `
<html>
<head>
<title>
Using an ISP
</title>
<display
showwhencomplete
noscroll
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Using an ISP&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=0 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<tr>
<td>
<td valign=top>
You could save money every month by using an Internet <br>
Service Provider (ISP). To learn more, choose one:<br>
<br>
<font color=395A31>&#128;</font>
<a href="OISPQ1" selected>
<b>Q:</b>
What is an ISP?</a><br>
<spacer type=vertical height=18>
<font color=395A31>&#128;</font>
<a href="OISPQ2">
<b>Q:</b>
How can I save money by using an ISP?</a><br>
<spacer type=vertical height=18>
<font color=395A31>&#128;</font>
<a href="OISPQ3">
<b>Q:</b>
How will this affect my WebTV bill?</a><br>
<spacer type=vertical height=18>
<font color=395A31>&#128;</font>
<a href="OISPQ4">
<b>Q:</b>
How do I find an ISP and what should I ask them?</a><br>
<spacer type=vertical height=18>
<font color=395A31>&#128;</font>
<a href="OISPQ5">
<b>Q:</b>
I already have an ISP. How do I sign up?</a><br>
<p>If you have an ISP and you're ready to sign up,<br>
choose <b>Sign Up Now</b>.
<tr>
<td width=35>&nbsp;
<td width=450>&nbsp;
<td width=50>&nbsp;
</table>
</table>
<tr>
<td valign=top height=55 align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="wtv-setup:/phone-BYOISP"
value="Sign Up Now"
selected>
<spacer type=horizontal width=20>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="wtv-setup:/serve-billing-overview"
value="Done"
width=110
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,76 @@
data = `
<html>
<head>
<title>What is an ISP?</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
What is an ISP?&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
If your receiver has to dial a <b>toll call</b> when you
connect to WebTV, you might be able to save money by
getting an ISP.
<p>When you use an ISP, your receiver calls the
ISP's<br>number instead of WebTV's number each time
you<br>connect.
<tr>
<td width=35>&nbsp;
<td width=450>&nbsp;
<td width=50>&nbsp;
</table>
</table>
<tr>
<td valign=top height=55 align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="client:goback"
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,75 @@
data = `
<html>
<head>
<title>How can I save?</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
How can I save?&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
If you use an ISP to connect to WebTV, you can save<br>money in two ways:
<p>If your ISP has a local access number in your area, you<br>
won't have to pay toll charges to the phone company to connect to WebTV.
<p>Your WebTV Service normally costs $0.00 per month.<br> If you use your own ISP,
you have to pay the ISP, but<br>your WebTV bill is only $0.00 per month.
<tr>
<td width=35>&nbsp;
<td width=450>&nbsp;
<td width=50>&nbsp;
</table>
</table>
<tr>
<td valign=top height=55 align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="client:goback"
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,75 @@
data = `
<html>
<head>
<title>Your WebTV bill</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Your WebTV bill&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
Using your own ISP is a little more complicated than<br>
using WebTV for your connections.
<p>You'll receive two bills: one from your ISP and the other<br>
from WebTV Networks. You are responsible for both<br>
bills in order to maintain your WebTV service.
<tr>
<td width=35>&nbsp;
<td width=450>&nbsp;
<td width=50>&nbsp;
</table>
</table>
<tr>
<td valign=top height=55 align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="OISPQ3B"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,78 @@
data = `
<html>
<head>
<title>How will this affect my bill?</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
How will this affect my bill?&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
Once you switch to using your own ISP, your WebTV<br>
bill will go down from $0.00 per month to $0.00 per<br>
month.
<p>You'll begin saving on your WebTV bill after the first full<br>
month that you use your ISP for your connection.
<p>If you use WebTV for the connection at any time during<br>
a month, you will be billed for the full $0.00 by WebTV<br>
for that month.
<tr>
<td width=35>&nbsp;
<td width=450>&nbsp;
<td width=50>&nbsp;
</table>
</table>
<tr>
<td valign=top height=55 align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="OISP"
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,86 @@
data = `
<html>
<head>
<title>Finding an ISP</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Finding an ISP&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
If you decide to look for an ISP, make sure the one you
find is compatible with WebTV. To be compatible with
WebTV, the ISP must:
<font size=-1>
<ul>
<li>Support both PPP and PAP.</li>
<spacer type=vertical height=5>
<li>Offer at least one access phone number in your local
calling area, with a speed of at least 28.8 Kbps.</li>
<spacer type=vertical height=5>
<li>Offer a fixed-cost service.</li>
<spacer type=vertical height=5>
<li>Offer technical support for connecting to WebTV.</li>
<spacer type=vertical height=5>
<li>Support 56 K Flex.</li>
</ul>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="OISPQ4B"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,84 @@
data = `
<html>
<head>
<title>Finding an ISP</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Finding an ISP&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
When you find an ISP, get the following information:
<font size=-1>
<ul>
<li>The name of your ISP</li>
<spacer type=vertical height=5>
<li>The user name you use with your ISP (this may be
different from your WebTV name)</li>
<spacer type=vertical height=5>
<li>Your ISP password</li>
<spacer type=vertical height=5>
<li>A local dial-up access phone number. A second, alternate
dial-up number is also helpful in case the first number is
ever busy.</li>
</ul>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="OISPQ4C"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,73 @@
data = `
<html>
<head>
<title>Finding an ISP</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Finding an ISP&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
You can probably find an ISP by looking in your local
Yellow Pages under <i>Internet Services, Internet
providers,</i> or similar listings.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="OISP"
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,84 @@
data = `
<html>
<head>
<title>How do I sign up?</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
How do I sign up?&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
To be compatible with WebTV, your ISP must:
<font size=-1>
<ul>
<li>Support both PPP and PAP.</li>
<spacer type=vertical height=5>
<li>Offer at least one access phone number in your local
calling area, with a speed of at least 28.8 Kbps.</li>
<spacer type=vertical height=5>
<li>Offer a fixed-cost service.</li>
<spacer type=vertical height=5>
<li>Offer technical support for connecting to WebTV.</li>
<spacer type=vertical height=5>
<li>Support 56 K Flex.</li>
</ul>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="OISPQ5B"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,84 @@
data = `
<html>
<head>
<title>How do I sign up?</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
How do I sign up?&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
Before you sign up, make sure you know the following:
<font size=-1>
<ul>
<li>The name of your ISP</li>
<spacer type=vertical height=5>
<li>The user name you use with your ISP (this may be
different from your WebTV name)</li>
<spacer type=vertical height=5>
<li>Your ISP password</li>
<spacer type=vertical height=5>
<li>A local dial-up access phone number. A second, alternate
dial-up number is also helpful in case the first number is
ever busy.</li>
</ul>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="OISP"
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,76 @@
data = `
<html>
<head>
<title>Automatic Bank Payment</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Automatic Bank Payment&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
If you choose Automatic Bank Payment, your monthly charge is automatically
drawn from your checking account.
<p>
If you change your payment method to Automatic
Bank Payment, a sign-up packet will be mailed to you. Just complete the form and include a voided check to start paying for your WebTV
service monthly.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action=javascript:location=history.go(-4);
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,81 @@
data = `
<html>
<head>
<title>Credit Cards</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Credit Cards&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
You can pay your WebTV service bill one of the following Credit Cards:
<p>
<ul>
<li>MasterCard</li>
<li>Visa</li>
<li>American Express</li>
<li>Discover</li>
</ul>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Debit"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,77 @@
data = `
<html>
<head>
<title>Debit Cards</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Debit Cards&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
You can also use one of the following Debit Cards:
<p>
<ul>
<li>MasterCard</li>
<li>Visa</li>
</ul>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Ach"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,79 @@
data = `
<html>
<head>
<title>Payment methods</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Payment methods&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
You can pay your WebTV service bill one of the following ways:
<p>
<ul>
<li>Credit card</li>
<li>Debit card</li>
<li>Automatic Bank Payment</li>
</ul>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Credit"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,76 @@
data = `
<html>
<head>
<title>What is an ISP?</title>
<display
noscroll
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
What is an ISP?&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
If your receiver has to dial a <b>toll call</b> when you
connect to WebTV, you might be able to save money by
getting an<br>ISP.
<p>When you use an ISP, your receiver calls the
ISP's<br>number instead of WebTV's number each time
you<br>connect.
<tr>
<td width=35>&nbsp;
<td width=450>&nbsp;
<td width=50>&nbsp;
</table>
</table>
<tr>
<td valign=top height=55 align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="wtv-mail:/listmail"
value="Begin"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,104 @@
data = `<html><head>
<title>Help: Main Index</title>
</head>
<display
noscroll
showwhencomplete
>
<body hspace="0" vspace="0" fontsize="medium" noscroll="" vlink="#cccccc" text="#c6bd6c" link="#cccccc" bgcolor="#00292f">
<table cellspacing="0" cellpadding="0">
<tbody><tr>
<td width="560" valign="top" height="96">
<table width="560" height="96" cellspacing="0" cellpadding="0" background="wtv-guide:/ROMCache/helpMasthead.swf">
<tbody><tr>
<td rowspan="2" width="107" valign="top" height="96">
<spacer type="vertical" height="7"><br>
<spacer type="horizontal" width="7">
<a href='wtv-home:/home'>
<img src='wtv-home:/ROMCache/WebTVLogoJewel.gif' width=87 height=67>
</spacer></spacer></td><td width="453" valign="top">
<spacer type="vertical" height="54"><br>
<spacer type="horizontal" width="108">
<font size="+3" color="DDDDDD"><blackface>
Main Index
</blackface></font>
<spacer type="vertical" height="0"><br>
</spacer></spacer></spacer></td></tr><tr>
<td align="right">
<table cellspacing="0" cellpadding="0">
<tbody><tr>
<td width="12">
<spacer type="horizontal" width="10">
</spacer></td><td width="110" valign="top">
</td><td width="12">
</td></tr></tbody></table>
</td></tr></tbody></table>
</td></tr></tbody></table>
<br>
<table frame="" width="200" height="270" cellspacing="2" cellpadding="0" border="0" align=right>
<tbody><tr>
<td valign="top"><font color="#70954b"><b>
<!--Yes, this HTML sucks. Don't blame me, blame WNI-->
<br><font color="#70954b">Your account</font><br>
<spacer type="vertical" height="18">
<font color="#70954b">&#128;</font><spacer type="horizontal" size="5"><a href="http://help.webtv.net/business/account.html"><font color="#FFFFFF">Billing</font></a><br>
<font color="#70954b">&#128;</font><spacer type="horizontal" size="5"><a href="wtv-guide:/help?topic=Billing&subtopic=PayMethods&page=PayMethods"><font color="#FFFFFF">Payment methods</font></a><br>
<font color="#70954b">&#128;</font><spacer type="horizontal" size="5"><a href="http://help.webtv.net/business/account.html"><font color="#FFFFFF">Avoiding toll calls</font></a><br>
<br><font color="#70954b">Customizing WebTV</font><br>
<spacer type="vertical" height="18">
<font color="#70954b">&#128;</font><spacer type="horizontal" size="5"><a href="wtv-guide:/help?topic=Users&subtopic=AddUser&page=1"><font color="#FFFFFF">Adding users</font></a><br>
<font color="#70954b">&#128;</font><spacer type="horizontal" size="5"><a href="wtv-guide:/help?topic=Users&subtopic=Addresses&page=Addresses2&directLink=true"><font color="#FFFFFF">Your E-mail address</font></a><br>
<font color="#70954b">&#128;</font><spacer type="horizontal" size="5"><a href="http://help.webtv.net/business/account.html"><font color="#FFFFFF">WebTV for kids</font></a><br>
<font color="#70954b">&#128;</font><spacer type="horizontal" size="5"><a href="http://help.webtv.net/business/account.html"><font color="#FFFFFF">Changing settings</font></a><br></table>
<table frame="" width="180" height="270" cellspacing="2" cellpadding="0" border="0" align=right>
<tbody><tr>
<td width="20"></spacer></td>
<td valign="top"><font color="#70954b"><b>
<br><font color="#70954b">Using the Web</font><br>
<spacer type="vertical" height="18">
<font color="#70954b">&#128;</font><spacer type="horizontal" size="5"><a href="wtv-guide:/help?topic=Mail&subtopic=mail"><font color="#FFFFFF">Mail</font></a><br>
<font color="#70954b">&#128;</font><spacer type="horizontal" size="5"><a href="http://help.webtv.net/business/account.html"><font color="#FFFFFF">Favorites</font></a><br>
<font color="#70954b">&#128;</font><spacer type="horizontal" size="5"><a href="http://help.webtv.net/business/account.html"><font color="#FFFFFF">Search</font></a><br>
<font color="#70954b">&#128;</font><spacer type="horizontal" size="5"><a href="http://help.webtv.net/business/account.html"><font color="#FFFFFF">Page Builder</font></a><br>
<font color="#70954b">&#128;</font><spacer type="horizontal" size="5"><a href="http://help.webtv.net/business/account.html"><font color="#FFFFFF">Chat</font></a><br>
<font color="#70954b">&#128;</font><spacer type="horizontal" size="5"><a href="http://help.webtv.net/business/account.html"><font color="#FFFFFF">Discuss</font></a><br>
<font color="#70954b">&#128;</font><spacer type="horizontal" size="5"><a href="http://help.webtv.net/business/account.html"><font color="#FFFFFF">Around town</font></a><br>
<font color="#70954b">&#128;</font><spacer type="horizontal" size="5"><a href="http://help.webtv.net/business/account.html"><font color="#FFFFFF">Internet info</font></a><br>
</spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></spacer></b></font></td>
<td width="20"><spacer type="horizontal" size="20"></spacer></td>
</tr>
</tbody></table>
<spacer type=vertical height=15>
<table bgcolor=001316 cellpadding=0 cellspacing=8 href="wtv-setup:/mail-advanced">
<tr>
<td height=20>
<td>
<font color=FFFFFF><b>Getting started
<td>&nbsp;&nbsp;&nbsp;
</table>
<spacer type=vertical height=5>
<table bgcolor=001316 cellpadding=0 cellspacing=8 href="wtv-setup:/mail-advanced">
<tr>
<td height=20>
<td>
<font color=FFFFFF><b>Top questions
<td>&nbsp;&nbsp;&nbsp;&nbsp;
</table>
<spacer type=vertical height=5>
<table bgcolor=001316 cellpadding=0 cellspacing=8 href="wtv-guide:/help/Glossary/Index">
<tr>
<td height=20>
<td>
<font color=FFFFFF><b>Web words
<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<spacer type=horizontal width=2>
</table>
</body></html>
`;

View File

@@ -0,0 +1,75 @@
data = `
<html>
<head>
<title>The CMD Key</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
The CMD Key&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
The command key &#151; labelled <font size=-1><b>CMD</b></font> &#151;
is helpful when you're editing text.
<p>
You can also use the <font size=-1><b>CMD</b></font>
key for other shortcuts. Choose <b>Continue</b> to learn more.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Cmd2"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,76 @@
data = `
<html>
<head>
<title>The CMD Key</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
The CMD Key&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
Press the <b>CMD</b> key at the same time you press these <br>
keys to use these shortcuts:
<p><b>cmd-left arrow</b><spacer type=vertical height=20>
Move the cursor to the beginning of a line of text you're editing.
<p><b>cmd-right arrow</b><spacer type=vertical height=20>
Move the cursor to the end of a line of text.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Cmd3"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,76 @@
data = `
<html>
<head>
<title>The CMD Key</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
The CMD Key&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<p><b>cmd-delete</b><spacer type=vertical height=20>
Delete an entire line of text.
<p><b>cmd-f</b><spacer type=vertical height=20>
Find some text on the page you're viewing.
<p><b>cmd-g</b><spacer type=vertical height=20>
Find the next occurrence of some text you've already searched for once.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Cmd4"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,74 @@
data = `
<html>
<head>
<title>The CMD Key</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
The CMD Key&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<p><b>cmd-r</b><spacer type=vertical height=20>
Reload the page you're viewing.
<p><b>cmd-p</b><spacer type=vertical height=20>
Print the page you're viewing.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Cmd5"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,82 @@
data = `
<html>
<head>
<title>The CMD Key</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
The CMD Key&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
You can also use the <font size=-1><b>CMD</b></font>
key for cutting and pasting text.
To learn more, choose this link:
<spacer type=vertical height=12><br>
<table bgcolor=001316 cellpadding=0 cellspacing=8 href="wtv-guide:/help/Tips/CutPaste/Start">
<tr>
<td height=20><font color=4B7136>
<b>&#128;
<td>
<font color=4B7136><b>How to cut and paste
<td>&nbsp;
</table>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action=javascript:location=history.go(-5);
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,73 @@
data = `
<html>
<head>
<title>Attaching the original</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Attaching the original&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
When you reply to a message, you can include a copy of the original message with your reply.
<p>
This way, when a person receives your response, they'll see a reminder of what you're responding to.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="client:goback"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,82 @@
data = `
<html>
<head>
<title>Attaching the original</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Attaching the original&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
This feature has to be turned on before you
can use it. Choose this link and make
sure the second box has a check mark in it:
<spacer type=vertical height=12><br>
<table bgcolor=001316 cellpadding=0 cellspacing=8 href="wtv-setup:/mail-advanced">
<tr>
<td height=20><font color=4B7136>
<b>&#128;
<td>
<font color=4B7136><b>Edit Mail settings
<td>&nbsp;
</table>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action=javascript:location=history.go(-3);
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,71 @@
data = `
<html>
<head>
<title>Attaching the original</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Attaching the original&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
If this setting has been turned on, you'll see a button for attaching the original every time you reply to a message.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="More"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,77 @@
data = `
<html>
<head>
<title>Carbon copies (cc)</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Carbon copies (cc)&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
Whenever you send someone an e-mail message,
you can also send a <b>carbon copy</b> of
the message to someone else.
<p>
Once the carbon copy setting has been turned
on, you'll see an area labeled <b>cc:</b>
whenever you write a message.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="client:goback"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,82 @@
data = `
<html>
<head>
<title>Carbon copies (cc)</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Carbon copies (cc)&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
This feature has to be turned on before you
can use it. Choose this link and make
sure the third box has a check mark in it:
<spacer type=vertical height=12><br>
<table bgcolor=001316 cellpadding=0 cellspacing=8 href="wtv-setup:/mail-advanced">
<tr>
<td height=20><font color=4B7136>
<b>&#128;
<td>
<font color=4B7136><b>Edit Mail settings
<td>&nbsp;
</table>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action=javascript:location=history.go(-3);
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,75 @@
data = `
<html>
<head>
<title>Carbon copies (cc)</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Carbon copies (cc)&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
If the carbon copy setting has been turned on, an area labeled
<b>Cc</b> will appear right below the area labeled <b>To</b> whenever you write a message.
<p>
If you want to send a carbon copy
to someone, type their address after <b>Cc</b>.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="More"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1 @@
data = `<html><head>

View File

@@ -0,0 +1,81 @@
data = `
<html>
<head>
<title>Is e-mail private?</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Is e-mail private?&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
You can prevent other people from accessing your
e-mail by setting a password. To set a password, choose this link:
<spacer type=vertical height=12><br>
<table bgcolor=001316 cellpadding=0 cellspacing=8 href="javascript:alert('This feature is not available')">
<tr>
<td height=20><font color=4B7136>
<b>&#128;
<td>
<font color=4B7136><b>Change password
<td>&nbsp;
</table>
<tr>
<td width=35>&nbsp;
<td width=450>&nbsp;
<td width=50>&nbsp;
</table>
</table>
<tr>
<td valign=top height=55 align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="client:goback"
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,76 @@
data = `
<html>
<head>
<title>How to read your e-mail</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
How to read your e-mail&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
To write your e-mail, choose Mail from your Home page. You will see a list of
your messages. Choose any of the messages to read it.
<p>
Some messages are too long to fit on the screen all at once. You may have to
press the <b>DOWN ARROW</b> on your remote control or keyboard
to see the whole message.
<tr>
<td width=35>&nbsp;
<td width=450>&nbsp;
<td width=50>&nbsp;
</table>
</table>
<tr>
<td valign=top height=55 align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="client:goback"
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,84 @@
data = `
<html>
<head>
<title>What is e-mail?</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
What is e-mail?&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
To write an e-mail message, choose Mail from your Home page, then
choose <b>Write</b>.
<p>
For more detailed instructions, choose this link:
<spacer type=vertical height=12><br>
<table bgcolor=001316 cellpadding=0 cellspacing=8 href="wtv-guide:/help/Mail/Write/Writing">
<tr>
<td height=20><font color=4B7136>
<b>&#128;
<td>
<font color=4B7136><b>Step-by-step instructions
<td>&nbsp;
</table>
<tr>
<td width=35>&nbsp;
<td width=450>&nbsp;
<td width=50>&nbsp;
</table>
</table>
<tr>
<td valign=top height=55 align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="client:goback"
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1 @@
data = `

View File

@@ -0,0 +1,326 @@
data = `
<html>
<head>
<title>Help: Mail</title>
<display noscroll>
<script language='Javascript'>
var cat = new Array();
var subCat = new Array();
var subCatUrl = new Array();
var ind = 0;
ind++;
cat[ind] = "Writing e-mail";
subCat[ind] = new Array();
subCatUrl[ind] = new Array();
subInd = 0;
subInd++;
subCat[ind][subInd] = "How to write a message";
subCatUrl[ind][subInd] = "topic=Mail&subtopic=Write&page=Writing";
subInd++;
subCat[ind][subInd] = "Adding pictures to e-mail";
subCatUrl[ind][subInd] = "topic=Mail&subtopic=Write&page=Writing";
subInd++;
subCat[ind][subInd] = "Adding sounds to e-mail";
subCatUrl[ind][subInd] = "topic=Mail&subtopic=Write&page=Writing";
subInd++;
subCat[ind][subInd] = "Your e-mail signature";
subCatUrl[ind][subInd] = "topic=Mail&subtopic=Signature&page=Signature";
subInd++;
subCat[ind][subInd] = "Cut, copy and paste";
subCatUrl[ind][subInd] = "topic=Tips&subtopic=CutPaste&page=Start";
subInd++;
subCat[ind][subInd] = "Carbon copies (cc)";
subCatUrl[ind][subInd] = "topic=Mail&subtopic=CarbCops&page=CarbCops";
ind++;
cat[ind] = "Address book";
subCat[ind] = new Array();
subCatUrl[ind] = new Array();
subInd = 0;
subInd++;
subCat[ind][subInd] = "What is the Address book?";
subCatUrl[ind][subInd] = "topic=Addressbook&subtopic=WhatIs";
subInd++;
subCat[ind][subInd] = "Adding to the Address book";
subCatUrl[ind][subInd] = "topic=Addressbook&subtopic=AddTo";
ind++;
cat[ind] = "Reading e-mail";
subCat[ind] = new Array();
subCatUrl[ind] = new Array();
subInd = 0;
subInd++;
subCat[ind][subInd] = "How to read your e-mail";
subCatUrl[ind][subInd] = "topic=Mail&subtopic=Reading";
subInd++;
subCat[ind][subInd] = "Saving a message";
subCatUrl[ind][subInd] = "topic=Mail&subtopic=Saving";
subInd++;
subCat[ind][subInd] = "Forwarding a message";
subCatUrl[ind][subInd] = "topic=Mail&subtopic=Forward";
subInd++;
subCat[ind][subInd] = "Fetching remote e-mail";
subCatUrl[ind][subInd] = "topic=MailPOP&subtopic=Index";
ind++;
cat[ind] = "Replying to e-mail";
subCat[ind] = new Array();
subCatUrl[ind] = new Array();
subInd = 0;
subInd++;
subCat[ind][subInd] = "Replying to a message";
subCatUrl[ind][subInd] = "topic=Mail&subtopic=Reply&page=Reply";
subInd++;
subCat[ind][subInd] = "Attaching the original";
subCatUrl[ind][subInd] = "topic=Mail&subtopic=Attach&page=Attach";
subInd++;
subCat[ind][subInd] = "Reply all";
subCatUrl[ind][subInd] = "topic=Mail&subtopic=ReplyAll";
ind++;
cat[ind] = "Storage";
subCat[ind] = new Array();
subCatUrl[ind] = new Array();
subInd = 0;
subInd++;
subCat[ind][subInd] = "Storage overview";
subCatUrl[ind][subInd] = "topic=Mail&subtopic=Storage";
subInd++;
subCat[ind][subInd] = "Discarding e-mail";
subCatUrl[ind][subInd] = "topic=Mail&subtopic=Discard";
subInd++;
subCat[ind][subInd] = "Saving messages you send";
subCatUrl[ind][subInd] = "topic=Mail&subtopic=SaveSent";
subInd++;
subCat[ind][subInd] = "Reading saved messages";
subCatUrl[ind][subInd] = "topic=Mail&subtopic=ReadingSaved";
subInd++;
subCat[ind][subInd] = "Recovering discarded messages";
subCatUrl[ind][subInd] = "topic=Mail&subtopic=Recover";
subInd++;
subCat[ind][subInd] = "When your Mail list fills up";
subCatUrl[ind][subInd] = "topic=Mail&subtopic=FullMailbox";
function doDone() { str = document.pageInfo.leaveInstructMenu.value;
goBackToUrl(str);
}
function tryApp() { location.href = "wtv-tricks:/mail";
}
var jsVisibleCat;
var jsSelectCat;
var selectSubcat;
function drawAll() { jsVisibleCat = document.indexForm.indexCat.value;
if (jsVisibleCat == "") jsVisibleCat = 0;
jsSelectCat = document.indexForm.selectCat.value;
if (jsSelectCat == "") jsSelectCat = 1;
jsSelectSubcat = document.indexForm.indexSubcat.value;
if (jsSelectSubcat == "") jsSelectSubcat = 0;
var embedDoc = document.embedArea.document;
embedDoc.open();
embedDoc.write( '<body hspace=0 vspace=0 text="E6E6E6" link="E6E6E6" vlink="E6E6E6"fontsize="medium" bgcolor=00292f>' );
embedDoc.write( '<table cellspacing="0" cellpadding="0">' );
embedDoc.write( '<tbody><tr>' );
embedDoc.write( '<td width="560" valign="top" height="96">' );
embedDoc.write( '<table width="560" height="96" cellspacing="0" cellpadding="0" background="wtv-guide:/ROMCache/helpMasthead.swf">' );
embedDoc.write( '<tbody><tr>' );
embedDoc.write( '<td rowspan="2" width="107" valign="top" height="96">' );
embedDoc.write( '<spacer type="vertical" height="7"><br>' );
embedDoc.write( '<spacer type="horizontal" width="7">' );
embedDoc.write( '<a href="wtv-home:/home">' );
embedDoc.write( '<img src="wtv-home:/ROMCache/WebTVLogoJewel.gif" width="87" height="67">' );
embedDoc.write( '</a>' );
embedDoc.write( '</spacer></spacer></td><td width="453" valign="top">' );
embedDoc.write( '<spacer type="vertical" height="52"><br>' );
embedDoc.write( '<spacer type="horizontal" width="106">' );
embedDoc.write( '<font size="+3" color="DDDDDD"><blackface>' );
embedDoc.write( 'Mail' );
embedDoc.write( "</blackface></font>" );
embedDoc.write( "<tr>" );
embedDoc.write( "<td align=right>" );
embedDoc.write( "&nbsp;" );
embedDoc.write( "</table>" );
embedDoc.write( "<tr>" );
embedDoc.write( "<td width=560 valign=top height=225>" );
embedDoc.write( "<table cellpadding=0 cellspacing=0 width=560>" );
embedDoc.write( "<tr>" );
embedDoc.write( "<td width=25 height=5>" );
embedDoc.write( "<td width=535>" );
embedDoc.write( "<tr>" );
embedDoc.write( '<td>' );
embedDoc.write( '<td height=225 rowspan=2 valign=top>' );
embedDoc.write( '<table width=100%>' );
embedDoc.write( '<tr>' );
embedDoc.write( '<td height=24>' );
embedDoc.write( '<font color=aaaaaa>Choose a topic:' );
embedDoc.write( '<tr>' );
embedDoc.write( '<td height=1 bgcolor=aaaaaa gradcolor=00292f gradangle=90>' );
embedDoc.write( '<tr>' );
embedDoc.write( '<td height=0>' );
embedDoc.write( '</table>' );
embedDoc.write( '<table cellpadding=0 cellspacing=0 height=225 width=535>' );
embedDoc.write( '<td height=0>' );
embedDoc.write( '<tr>' );
embedDoc.write( '<td>' );
embedDoc.write( '<td valign=top>' );
embedDoc.write( '<table><tr><td colspan=2>' );
embedDoc.write( '<tr><td>' );
embedDoc.write( '</table>' );
embedDoc.write( '<tr><td valign=top height=224 width=205>' );
embedDoc.write( '<table cellspacing=0 cellpadding=0 width=205>' );
embedDoc.write( '<tr><td height=2 width=15><td width=175><td width=15>' );
for (var i = 1; i < cat.length; i++) { if (i == jsVisibleCat) { embedDoc.write( '<tr><td bgcolor=141A19><td height=27 bgcolor=141A19>');
if (i == jsSelectCat) { embedDoc.write( '<a href="client:donothing" nextRight="cat' + i + '1" id="cat' + i + '" selected>');
} else { embedDoc.write( '<a href="client:donothing" nextRight="cat' + i + '1" id="cat' + i + '">');
}
embedDoc.write( cat[i] + '</a>');
embedDoc.write( '<td align=right bgcolor=141A19><font color=395A31>&#128;&nbsp;');
} else { embedDoc.write( '<tr><td height=27><font color=395A31>&#128;<td>' );
if (i == jsSelectCat) { embedDoc.write( '<a href="javascript:showSection(' + i + ')" selected>' + cat[i] + '</a>');
} else { if (jsVisibleCat == 0) { embedDoc.write( '<a href="javascript:showSection(' + i + ')">' + cat[i] + '</a>');
} else { embedDoc.write( '<a href="javascript:showSection(' + i + ')" onMouseOver="hideSection(' + i + ');"><font color=6e6e7e>' + cat[i] + '</a>');
}
}
embedDoc.write( '<td>&nbsp;');
}
}
embedDoc.write( '</table>' );
embedDoc.write( '<td valign=top width=313>' );
embedDoc.write( '<table width=313 height=' + (27*(cat.length-1)+2) + ' cellspacing=0 cellpadding=0>' );
embedDoc.write( '<tr><td height=2 width=2><td width=25><td width=284><td width=2>' );
if ( jsVisibleCat != 0 ) { embedDoc.write( '<tr><td rowspan=99 bgcolor=141A19>' );
embedDoc.write( '<td height=2 colspan=2 bgcolor=141A19>' );
embedDoc.write( '<td rowspan=99 bgcolor=141A19>' );
embedDoc.write( '<tr><td height=3>' );
for (var i = 1; i < subCat[jsVisibleCat].length; i++) { embedDoc.write( '<tr><td height=24 valign=top align=center><font color=395A31>&#128;' );
embedDoc.write( '<td>' );
if (i == jsSelectSubcat) { embedDoc.write( '<a href="javascript:goToPage('+ jsVisibleCat +','+ i +')" onMouseOver="setSubSection(' + i + ');" nextLeft="cat' + jsVisibleCat + '" id="cat' + jsVisibleCat + i +'" selected>' + subCat[jsVisibleCat][i]);
} else { embedDoc.write( '<a href="javascript:goToPage('+ jsVisibleCat +','+ i +')" onMouseOver="setSubSection(' + i + ');" nextLeft="cat' + jsVisibleCat + '" id="cat' + jsVisibleCat + i +'">' + subCat[jsVisibleCat][i]);
}
embedDoc.write( '</a>' );
}
embedDoc.write( '<tr><td><spacer type=vertical height=3><br>' );
embedDoc.write( '<tr><td colspan=2 height=2 bgcolor=141A19>' );
} else { embedDoc.write( '<tr><td><td><spacer type=horizontal width=25><td><spacer type=horizontal width=284><td>' );
}
embedDoc.write( '</table>' );
embedDoc.write( '<tr><td height=3>' );
embedDoc.write( '</table>' );
embedDoc.write( '<tr><td colspan=3 valign=bottom height=0 align=right>' );
embedDoc.write( '<spacer type=vertical height=260>' );
embedDoc.write( "<a href='wtv-guide:/topic=help&subtopic=Mail&page=mail'><img src='wtv-guide:/ROMCache/HelpDoneButton.gif' width='110' height='33'></a> " );
embedDoc.write( '<spacer type=horizontal width=20>' );
embedDoc.write( '</table>');
embedDoc.write( '</body>' );
embedDoc.close();
}
function showSection(gvnNum) { document.indexForm.indexCat.value = gvnNum;
document.indexForm.selectCat.value = "0";
document.indexForm.indexSubcat.value = "1";
drawAll();
}
function setSubSection(gvnNum) { document.indexForm.selectCat.value = "0";
document.indexForm.indexSubcat.value = gvnNum;
}
function hideSection(gvnNum) { document.indexForm.indexCat.value = "0";
document.indexForm.selectCat.value = gvnNum;
document.indexForm.indexSubcat.value = "0";
drawAll();
}
function goToPage(a,b) { str = subCatUrl[a][b];
if (str.substring(0,4) == "faq:") { goToStr = str.substring(4,str.length);
goToHelpCenter(goToStr);
} else if (str.substring(0,9) == "non-help:") { goToStr = str.substring(9,str.length);
goToUrl(goToStr);
} else if (str.substring(0,7) == "newFAQ:") { goToStr = str.substring(7,str.length);
goToFAQURL(goToStr);
} else { goToStr = ('wtv-guide:/help?' + str);
goToUrl(goToStr);
}
}
function preDrawPage() { var embedDoc = document.embedArea.document;
embedDoc.open();
embedDoc.write( '<body text=D2D2D3 link=D2D2D3 vlink=D2D2D3>' );
embedDoc.write( '<table width=560 height=384 cellspacing=0 cellpadding=0>' );
embedDoc.write( '<tr><td colspan=4 width=560 height=80 bgcolor=5A5A52 valign=top>' );
embedDoc.write( '<table width=560 height=80 cellspacing=0 cellpadding=0>' );
embedDoc.write( '<tr><td width=107 height=80 valign=top rowspan=2>' );
embedDoc.write( '<spacer type=vertical height=7><br>' );
embedDoc.write( '<spacer type=horizontal width=7>' );
embedDoc.write( '<td width=453 valign=top>' );
embedDoc.write( '<spacer type=vertical height=48><br>' );
embedDoc.write( '<spacer type=horizontal width=90>' );
embedDoc.write( '<font size=+3 color=D6D6D6>' );
embedDoc.write( '<blackface>Mail&nbsp;</blackface></font>' );
embedDoc.write( '</table>' );
embedDoc.write( "<tr><td width=15 bgcolor=5A5A52 rowspan=4>" );
embedDoc.write( "<td width=15 bgColor=2D3131 valign=top>" );
embedDoc.write( "<td width=518 height=25 bgColor=2D3131 gradColor=141A19 gradAngle=90 align=right>" );
embedDoc.write( "<td width=12 bgcolor=141A19>" );
embedDoc.write( '<tr><td><td width=518 height=234>' );
embedDoc.write( '<tr><td height=45>' );
embedDoc.write( '</table>');
embedDoc.write( '</body>' );
embedDoc.close();
}
function noBackHelp(gvnStr) { str = ( "wtv-guide:/nobackSubtopic?topic=Mail&subtopic=Instructions&endUrl=" + escape(gvnStr) )
location.href = str;
}
function goToHelpUrl(gvnTop,gvnSub,gvnPag) { str = getHelpUrl(gvnTop,gvnSub,gvnPag);
goToUrl(str);
}
function goToFAQURL(targetURL) { document.location = targetURL;
}
function goToUrl(gvnStr) { document.pageInfo.action=gvnStr;
document.pageInfo.submit();
}
function goToHelpCenter(gvnStr) { document.helpCenterInfo.action= ("http://127.0.0.1/HelpCenter/" + gvnStr);
document.helpCenterInfo.submit();
}
function goBackToUrl(gvnStr, wholeString) { /*
If the URL is at the beginning of any item in the backlist,
go back to it. If not, just go to it. If wholeString is
specified, it looks for perfect matches of the whole string.
*/
ind = gvnStr.indexOf("wtv-token");
if (ind > -1) { gvnStr = gvnStr.substring(0,ind);
}
window.message("gvnStr=" + gvnStr);
foundInBackList = false;
for (i=history.length; i--; i>0 ) { if ( wholeString != null ) { testStr = history[i];
} else { str = history[i];
testStr = str.substring(0, gvnStr.length);
}
if ( testStr == gvnStr ) { i++;
foundInBackList = true;
break;
}
}
if (foundInBackList == true) { history.go(i-history.length);
} else { goToUrl(gvnStr);
}
}
function getHelpUrl(gvnTop,gvnSub,gvnPag) { if (gvnTop == 'Index')
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
else
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
if (gvnSub != "")
tmpStr += ('&subtopic=' + gvnSub);
if (gvnPag != "")
tmpStr += ('&page=' + gvnPag);
return tmpStr;
}
function endDiploma() { location.href = document.pageInfo.doneUrl.value;
}
function noBackDiploma() { noBackHelp(document.pageInfo.doneUrl.value);
}
</script>
</head>
<body hspace=0 vspace=0 text="E6E6E6" link="E6E6E6" vlink="E6E6E6"fontsize="medium" bgcolor=00292f onLoad='drawAll();'>
<embed name="embedArea" src="file://ROM/HTMLs/Empty.html" nobackground>
<form name='pageInfo' method='post'>
</form>
<form name="indexForm">
<input type='label' size=0 noselect name="indexCat">
<input type='label' size=0 noselect name="selectCat">
<input type='label' size=0 noselect name="indexSubcat">
</form>
</body>
`;

View File

@@ -0,0 +1,73 @@
data = `
<html>
<head>
<title>Adding pictures to e-mail</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Adding pictures to e-mail&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
When you're writing e-mail, you can attach a picture
to your message from a TV show, a tape in your VCR, a video
camera, an e-scanner with video output, or a digital camera with video output.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Picture2"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,75 @@
data = `
<html>
<head>
<title>Adding pictures to e-mail</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Adding pictures to e-mail&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
To add a picture to an e-mail message, follow these steps:
<p><b>Step&nbsp;1</b><spacer type=vertical height=20>
Choose <b>Write</b>.
<p><b>Step&nbsp;2</b><spacer type=vertical height=20>
When you're ready to add a picture, choose <b>Photo</b>.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Picture3"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,77 @@
data = `
<html>
<head>
<title>Adding pictures to e-mail</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Adding pictures to e-mail&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<p><b>Step&nbsp;3</b><spacer type=vertical height=20>
A panel will appear, showing what's on TV.
<p>
If you want to get the picture from some other
device &#151; like a VCR, e-scanner, or video camera &#151; choose the
<font size=-1><b>TV/VIDEO</b></font> switch to set it on
<font size=-1><b>VIDEO</b></font>.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Picture4"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,77 @@
data = `
<html>
<head>
<title>Adding pictures to e-mail</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Adding pictures to e-mail&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<p><b>Step&nbsp;4</b><spacer type=vertical height=20>
When you see the picture you want to attach,
choose <b>Freeze</b>.
<p>
If you choose <b>Freeze</b> a second time it will unfreeze the picture and you can try again.
<p>
If you are using an e-scanner, skip this step.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Picture5"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,75 @@
data = `
<html>
<head>
<title>Adding pictures to e-mail</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Adding pictures to e-mail&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<p><b>Step&nbsp;5</b><spacer type=vertical height=20>
When you're happy with the frozen picture, choose <b>Add to Message</b>.
<p>
This takes you back to the message, where you can address and send it
as usual.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action=javascript:location=history.go(-5);
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,75 @@
data = `
<html>
<head>
<title>Replying to a message</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Replying to a message&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
When someone sends you a message and you want to send a message back to them, follow these steps:
<p><b>Step&nbsp;1</b><spacer type=vertical height=20>
From your Mail list, choose the message you want to reply to.
<p><b>Step&nbsp;2</b><spacer type=vertical height=20>
Choose <b>Reply</b>.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Reply2"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,76 @@
data = `
<html>
<head>
<title>Replying to a message</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Replying to a message&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<p><b>Step&nbsp;3</b><spacer type=vertical height=20>
The address of the person you're replying to is filled in automatically after the word <b>To:</b>.
<p><b>Step&nbsp;4</b><spacer type=vertical height=20>
Type your message in the blank area underneath the word <b>Subject</b>.
<p><b>Step&nbsp;5</b><spacer type=vertical height=20>
After you've typed your response, choose <b>Send</b>.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action=javascript:location=history.go(-2);
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,75 @@
data = `
<html>
<head>
<title>Your e-mail signature</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Your e-mail signature&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
An e-mail <b>signature</b> is a few lines of text that are
automatically added to the end of each message that you write.
<p>
You can type whatever you want in your signature. Often people type
their name, address, phone number, or favorite quotation.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Signature2"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,74 @@
data = `
<html>
<head>
<title>Your e-mail signature</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Your e-mail signature&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
After you've written your signature,it will appear automatically
at the bottom of each message you write.
<p>You can always remove the signature from a message you're writing
by choosing <b>Remove signature</b>.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Signature3"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,83 @@
data = `
<html>
<head>
<title>Your e-mail signature</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Your e-mail signature&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
To edit your signature now, choose this link
and type your signature into the box:
<spacer type=vertical height=12><br>
<table bgcolor=001316 cellpadding=0 cellspacing=8 href="wtv-setup:/mail-signature">
<tr>
<td height=20><font color=4B7136>
<b>&#128;
<td>
<font color=4B7136><b>Edit your signature
<td>&nbsp;
</table>
<p>
If you don't want to have a signature, you can leave the box blank.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action=javascript:location=history.go(-3);
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,75 @@
data = `
<html>
<head>
<title>What is the storage area?</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
What is the storage area?&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
The <b>storage</b> area is where you can keep track
of your messages.
<p>
There are separate folders for messages you have saved, messages
you have sent, and messages you have discarded. You can move messages from one folder to another to organize your messages as you wish.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Storage2"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,81 @@
data = `
<html>
<head>
<title>What is the storage area?</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
What is the storage area?&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
In order to have access to the storage area, you need to make sure the setting has been turned on. Choose this link and
make sure the first box has a check mark in it:
<spacer type=vertical height=12><br>
<table bgcolor=001316 cellpadding=0 cellspacing=8 href="wtv-setup:/mail-advanced">
<tr>
<td height=20><font color=4B7136>
<b>&#128;
<td>
<font color=4B7136><b>Edit Mail settings
<td>&nbsp;
</table>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action=javascript:location=history.go(-2);
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,74 @@
data = `
<html>
<head>
<title>What is e-mail?</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
What is e-mail?&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
With e-mail &#151; short for electronic mail &#151; you can exchange types messages
with anyone in the world who has an e-mail address.
<p>
E-mail messages travel quickly through the internet, often arriving in minutes.
<tr>
<td width=35>&nbsp;
<td width=450>&nbsp;
<td width=50>&nbsp;
</table>
</table>
<tr>
<td valign=top height=55 align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="client:goback"
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,104 @@
data = `
<html>
<head>
<title>Writing E-Mail</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Writing E-Mail&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<table cellpadding=0 cellspacing=0 width=100%>
<tr>
<td colspan=3 height=0>
<tr>
<td valign=top width=175 >
To write an e-mail message, follow these steps:
<p><b>Step&nbsp;1</b>
<spacer type=vertical height=20>
First, if you're not already in Mail, choose <b>Mail</b> from `;
if (session_data.hasCap("client-has-tv-experience"))
data += "Web Home"
else
data += "Home"
data += ` or press the <b>Mail</b> key on your keyboard.
<td width=10>
<td width=267 valign=top>
<table align=right cellpadding=0 cellspacing=0 background="`;
if (session_data.hasCap("client-has-tv-experience"))
data += "wtv-guide:/images/home-plus.jpg"
else
data += "wtv-guide:/images/home-classic.jpg"
data += `" width=267 height=200>
<tr>
<td valign=top>
<spacer type=vertical height=30><br><spacer type=horizontal width=95>
<img src="wtv-guide:/images/help/common/arrowUL.gif" width=55 height=79>
</table>
<tr>
<td rowspan=3 height=10>
</table>
</tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Writing2"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,93 @@
data = `
<html>
<head>
<title>Writing E-Mail</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Writing E-Mail&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<table cellpadding=0 cellspacing=0 width=100%>
<tr>
<td colspan=3 height=0>
<tr>
<td valign=top width=175 >
<p><b>Step&nbsp;2</b>
<spacer type=vertical height=20>
Then choose <b>Write</b>.
<td width=10>
<td width=267 valign=top>
<table align=right cellpadding=0 cellspacing=0 background="wtv-guide:/images/help/mail/maillist.jpg" width=267 height=200>
<tr>
<td valign=top>
<spacer type=vertical height=45><br><spacer type=horizontal width=30>
<img src="wtv-guide:/images/help/common/arrowUL.gif" width=55 height=79>
</table>
<tr>
<td rowspan=3 height=10>
</table>
</tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Writing3"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,103 @@
data = `
<html>
<head>
<title>Writing E-Mail</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Writing E-Mail&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<table cellpadding=0 cellspacing=0 width=100%>
<tr>
<td colspan=3 height=0>
<tr>
<td valign=top width=175 >
<p><b>Step&nbsp;3</b>
<spacer type=vertical height=20>
After the word <b>To</b>, type in the e-mail
address of the person you're writing to.
<p>
Here's an example of an e-mail address:
<p>
<b>somename@webtv.net</b>
<td width=10>
<td width=267 valign=top>
<table align=right cellpadding=0 cellspacing=0 background="`;
if (session_data.hasCap("client-has-tv-experience"))
data += "wtv-guide:/images/help/mail/sendmail-plus.jpg"
else
data += "wtv-guide:/images/help/mail/sendmail-classic.jpg"
data += `" width=267 height=200>
<tr>
<td valign=top>
<spacer type=vertical height=60><br><spacer type=horizontal width=110>
<img src="wtv-guide:/images/help/common/arrowUL.gif" width=55 height=79>
</table>
<tr>
<td rowspan=3 height=10>
</table>
</tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Writing4"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,102 @@
data = `
<html>
<head>
<title>Writing E-Mail</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Writing E-Mail&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<table cellpadding=0 cellspacing=0 width=100%>
<tr>
<td colspan=3 height=0>
<tr>
<td valign=top width=175 >
<p><b>Step&nbsp;4</b>
<spacer type=vertical height=20>
After the word <b>Subject</b>, type
a short phrase describing what the message is about.
<p>
When your message appears in the person's
mailbox, they'll see it first.
<td width=10>
<td width=267 valign=top>
<table align=right cellpadding=0 cellspacing=0 background="`;
if (session_data.hasCap("client-has-tv-experience"))
data += "wtv-guide:/images/help/mail/sendmail-plus.jpg"
else
data += "wtv-guide:/images/help/mail/sendmail-classic.jpg"
data += `" width=267 height=200>
<tr>
<td valign=top>
<spacer type=vertical height=75><br><spacer type=horizontal width=110>
<img src="wtv-guide:/images/help/common/arrowUL.gif" width=55 height=79>
</table>
<tr>
<td rowspan=3 height=10>
</table>
</tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Writing5"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,99 @@
data = `
<html>
<head>
<title>Writing E-Mail</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Writing E-Mail&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<table cellpadding=0 cellspacing=0 width=100%>
<tr>
<td colspan=3 height=0>
<tr>
<td valign=top width=175 >
<p><b>Step&nbsp;5</b>
<spacer type=vertical height=20>
In the area beneath the subject,
type in the message itself.
<td width=10>
<td width=267 valign=top>
<table align=right cellpadding=0 cellspacing=0 background="`;
if (session_data.hasCap("client-has-tv-experience"))
data += "wtv-guide:/images/help/mail/sendmail-plus.jpg"
else
data += "wtv-guide:/images/help/mail/sendmail-classic.jpg"
data += `" width=267 height=200>
<tr>
<td valign=top>
<spacer type=vertical height=26><br><spacer type=horizontal width=110>
<img src="wtv-guide:/images/help/common/arrowDL.gif" width=55 height=79>
</table>
<tr>
<td rowspan=3 height=10>
</table>
</tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Writing6"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,99 @@
data = `
<html>
<head>
<title>Writing E-Mail</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Writing E-Mail&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<table cellpadding=0 cellspacing=0 width=100%>
<tr>
<td colspan=3 height=0>
<tr>
<td valign=top width=175 >
<p><b>Step&nbsp;6</b>
<spacer type=vertical height=20>
Finally, choose <b>Send</b>, and your
message will be sent.
<td width=10>
<td width=267 valign=top>
<table align=right cellpadding=0 cellspacing=0 background="`;
if (session_data.hasCap("client-has-tv-experience"))
data += "wtv-guide:/images/help/mail/sendmail-plus.jpg"
else
data += "wtv-guide:/images/help/mail/sendmail-classic.jpg"
data += `" width=267 height=200>
<tr>
<td valign=top>
<spacer type=vertical height=70><br><spacer type=horizontal width=160>
<img src="wtv-guide:/images/help/common/arrowDR.gif" width=55 height=79>
</table>
<tr>
<td rowspan=3 height=10>
</table>
</tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action=javascript:location=history.go(-6);
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1 @@
data = `<html><head>

View File

@@ -0,0 +1,77 @@
var minisrv_service_file = true;
headers = `200 OK
Connection: Keep-Alive
Content-Type: text/html`
data = `
<html>
<head>
<title>What is remote mail?</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
What is remote mail?&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
Remote mail is a feature that allows you to have e-mail from another mail service delivered to your WebTV Mail list.
<tr>
<td width=35>&nbsp;
<td width=450>&nbsp;
<td width=50>&nbsp;
</table>
</table>
<tr>
<td valign=top height=55 align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="WhatIs2"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,96 @@
var minisrv_service_file = true;
headers = `200 OK
Connection: Keep-Alive
Content-Type: text/html`
data = `
<html>
<head>
<title>What is remote mail?</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
What is remote mail?&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<table cellpadding=0 cellspacing=0 width=100%>
<tr>
<td colspan=3 height=0>
<tr>
<td valign=top width=175 >
To set up remote mail, choose Settings from your Mail list.
<td width=10>
<td width=267 valign=top>
<table align=right cellpadding=0 cellspacing=0 background="wtv-guide:/images/help/mail/maillist.jpg" width=267 height=200>
<tr>
<td valign=top>
<spacer type="vertical" height="22"><br><spacer type="horizontal" width="50">
<img src="wtv-guide:/images/help/common/arrowDL.gif" width="55" height="79">
</table>
<tr>
<td rowspan=3 height=10>
</table>
</tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Writing3"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,73 @@
data = `
<html>
<head>
<title>Adding pictures from an e-mail</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Adding pictures from an e-mail&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
You can add pictures to any
Web page you are creating. To
learn more, choose <b>Continue</b>.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="AddFromMail2"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,75 @@
data = `
<html>
<head>
<title>Adding pictures from an e-mail</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Adding pictures from an e-mail&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
To add a picture from an e-mail message
to your Scrapbook, follow these steps:
<p><b>Step&nbsp;1</b><spacer type=vertical height=20>
Choose a message from your Mail List that has a
picture attached.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="AddFromMail3"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,76 @@
data = `
<html>
<head>
<title>Adding pictures from an e-mail</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Adding pictures from an e-mail&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<p><b>Step&nbsp;2</b><spacer type=vertical height=20>
Choose <b>Scrapbook</b>.
<p>
<font size=-1>NOTE:</font> The <b>Scrapbook</b> link will
only appear when you're looking at an e-mail message
that has a picture attached.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="AddFromMail4"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,76 @@
data = `
<html>
<head>
<title>Spell-checker overview</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Spell-checker overview&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
The spell-checker looks for misspelled words in a message
and helps you correct them.
<p>
The spell-checker can also <b>add words</b> to your <b>word list.</b> You can add words that are spelled correctly but aren't in the dictionary, like someone's name or the name of a town.
<p>
The words are saved on your list until you remove them.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Overview2"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,75 @@
data = `
<html>
<head>
<title>Spell-checker overview</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Spell-checker overview&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
To use the spell-checker, follow these steps:
<p><b>Step&nbsp;1</b><spacer type=vertical height=20>
Choose <b>Write</b> from your Mail list.
<p><b>Step&nbsp;2</b><spacer type=vertical height=20>
Write your message as usual. When you're done, choose <b>Spelling</b>.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Overview3"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,77 @@
data = `
<html>
<head>
<title>Spell-checker overview</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Spell-checker overview&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<p><b>Step&nbsp;3</b><spacer type=vertical height=20>
The first misspelled word appears at the top of the page, highlighted in white.
<p><b>Step&nbsp;4</b><spacer type=vertical height=20>
A list of suggested corrections appears at the middle of the screen.
<p>
You can select any of the words on the list to make the change
and move on to the next word.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Overview4"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,75 @@
data = `
<html>
<head>
<title>Spell-checker overview</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Spell-checker overview&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<p><b>Step&nbsp;5</b><spacer type=vertical height=20>
If you don't find the word you want among the suggestions, move the yellow box up to the area labeled <font size=-1> POSSIBLE MISSPELLING</font> and type in a correction, then choose <b>Change</b>.
<p><b>Step&nbsp;6</b><spacer type=vertical height=20>
If you don't want to change a word that gets highlighted as
a misspelling, choose <b>Skip Word</b>.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Overview5"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,79 @@
data = `
<html>
<head>
<title>Spell-checker overview</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Spell-checker overview&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<p><b>Step&nbsp;7</b><spacer type=vertical height=20>
If the highlighted word is not misspelled
&#151; someone's name, for example &#151;
choose <B>Add Word</b>.
<p>
The next time you use the word in an e-mail message,
the spell-checker won't mark it as a misspelling.
<p><b>Step&nbsp;8</b><spacer type=vertical height=20>
When you reach the last word, choose <b>Done</b>.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action=javascript:location=history.go(-5);
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,89 @@
data = `
<html>
<head>
<title>Cut, copy, and paste</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Cut, copy, and paste&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
Here's a trick for quickly selecting a word on a page.
First press <b>cmd-f</b> on your keyboard.
Then type <i>Panama</i> and choose <b>Find on Page</b>.
<p>
The word Panama above should now be selected. See if
you can copy (<b>cmd-c</b>) and paste (<b>cmd-v</b>)
it after the text in the rectangle below.
<p>
<center><form action='client:donothing'>
<textarea
bgcolor=#2A562A
text=#efefef
cursor=#cc9933
font=proportional
width=280
rows=1
autoactivate
autoascii
nohighlight>A man, a plan, a canal: </textarea></form></center>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Review"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,89 @@
data = `
<html>
<head>
<title>Cut, copy, and paste</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Cut, copy, and paste&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
Again, move the yellow box to the rectangle. Then,
using the arrow keys, position the blinking cursor
where you'd like to paste the text.
<p>
Then type <b>cmd-v</b>
(type the letter <b>v</b> while holding
down the <b>cmd</b> key) to paste.
<p>
<center><form action='client:donothing'>
<textarea
bgcolor=#2A562A
text=#efefef
cursor=#cc9933
font=proportional
width=280
rows=1
autoactivate
autoascii
nohighlight>paste somewhere in this box</textarea></form></center>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="SelectWord"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,86 @@
data = `
<html>
<head>
<title>Cut, copy, and paste</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Cut, copy, and paste&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
Now try to paste the word <i>only</i> &#151; from
the previous page &#151; between the words <i>It's</i>
and <i>a</i> below. Move the cursor before the word <i>a</i>, then
press <b>cmd-v</b> to paste.
<p>
<center><form action='client:donothing'>
<textarea
bgcolor=#2A562A
text=#efefef
cursor=#cc9933
font=proportional
width=280
rows=1
autoactivate
autoascii
nohighlight>It's a game.</textarea></form></center>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Find"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,85 @@
data = `
<html>
<head>
<title>Cut, copy, and paste</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Cut, copy, and paste&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
Here are the key combinations for cutting and pasting:
<p>
<ul>
<li><b>cmd-a</b> to select all the text in an area</li>
<li><b>cmd-c</b> to copy the selected text</li>
<li><b>cmd-x</b> to cut the selected text</li>
<li><b>cmd-v</b> to paste</li>
<li><b>shift-arrow</b> to select some of the text</li>
<li><b>cmd-f</b> to find and select text on a page</li>
</ul>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action=javascript:location=history.go(-7);
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,91 @@
data = `
<html>
<head>
<title>Cut, copy, and paste</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Cut, copy, and paste&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
To practice selecting and copying text, move the yellow
box up to the rectangle below. You'll see a blinking
line &#151; or <i>cursor</i> &#151; after the word <b>copy</b>.
<p>
Then press <b>cmd-a</b> (type the letter <b>a</b> while holding
down the <b>cmd</b> key).
This selects all the text in the area. Next, type
<b>cmd-c</b> to copy the
text. Choose <b>Continue</b>.
<p>
<center><form action='client:donothing'>
<textarea
bgcolor=#2A562A
text=#efefef
cursor=#cc9933
font=proportional
width=280
rows=1
autoactivate
autoascii
nohighlight>some text to copy</textarea></form></center>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Paste"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,90 @@
data = `
<html>
<head>
<title>Cut, copy, and paste</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Cut, copy, and paste&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
You can also cut and paste individual words.
Again, move to the rectangle. Then hold down
<b>shift</b> and use the arrow keys to select
the text. To start over,
release the shift key and press an arrow key.
<p>
<center><form action='client:donothing'>
<textarea
bgcolor=#2A562A
text=#efefef
cursor=#cc9933
font=proportional
width=280
rows=1
autoactivate
autoascii
nohighlight>select only one word</textarea></form></center>
<p>
Try selecting just the word <i>only</i>, then
<b>cut</b> it by pressing <b>cmd-x</b>.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="PasteWord"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,78 @@
data = `
<html>
<head>
<title>Cut, copy, and paste</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Cut, copy, and paste&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
<b>Cutting and pasting</b> is when you remove text
from one place and insert it somewhere else.
You can cut and paste text anywhere you can
type &#151; in an e-mail message, for example.
<p>
You can also <b>copy</b> text from one place &#151;
such as a Web page &#151; and paste it
anywhere you can type.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Select"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,89 @@
data = `
<html>
<head>
<title>The on-screen keyboard</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
The on-screen keyboard&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
To type capital letters, highlight <b>shift</b> on the keyboard
and press the center button. Then highlight the letter you want to type and
press the center button. Try it now:
<center><form action='client:donothing'>
<textarea
bgcolor=#2A562A
text=#efefef
cursor=#cc9933
font=proportional
width=280
rows=1
autoactivate
autoascii
nohighlight>
</textarea></form></center>
<p>
To turn on caps lock and type many capital letters, highlight <b>shift</b> on the keyboard and press the
center button twice. When you've finished typing capitals,
select the <b>shift</b> key again to turn off caps lock.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Erasing"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,90 @@
data = `
<html>
<head>
<title>The on-screen keyboard</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
The on-screen keyboard&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
To erase what you've typed:
<p>
<table>
<TR>
<TD align=right valign=top>
1.
<TD valign=top>
Choose an arrow key on the keyboard and press the center
button until the vertical line is directly to the right of the letter to be erased.
<TR>
<TD align=right valign=top>
2.
<TD valign=top>
Choose the <b>delete</b> key on the keyboard.
<TR>
<TD align=right valign=top>
3.
<TD valign=top>
Press the center button.
</table>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="NextLine"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,73 @@
data = `
<html>
<head>
<title>The on-screen keyboard</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
The on-screen keyboard&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
To remove the keyboard from your screen, press
the <font size=-1><b>BACK</b></font> button on
the remote.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action=javascript:location=history.go(-8);
value="Done"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,89 @@
data = `
<html>
<head>
<title>The on-screen keyboard</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
The on-screen keyboard&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
To add a space:
<p>
<table>
<tr>
<TD align=right valign=top>
1.
<TD valign=top>
Use the arrow keys on the keyboard to move the vertical yellow line to the position in the text where you want to put a space.
<tr>
<TD align=right valign=top>
2.
<TD valign=top>
Highlight <b>space</b> on the on-screen keyboard.
<tr>
<TD align=right valign=top>
3.
<TD valign=top>
Press the center button on the remote.
</table>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="GettingRidOf"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,84 @@
data = `
<html>
<head>
<title>The on-screen keyboard</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
The on-screen keyboard&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
To move to the next line in the text box:
<p>
<table>
<TR>
<TD align=right valign=top>
1.
<TD valign=top>
Highlight <b>return</b> on the on-screen keyboard.
<TR>
<TD align=right valign=top>
2.
<TD valign=top>
Press the center button.
</table>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="NextTextBox"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,84 @@
data = `
<html>
<head>
<title>The on-screen keyboard</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
The on-screen keyboard&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
To move to the next text box on the same page:
<p>
<table>
<TR>
<TD align=right valign=top>
1.
<TD valign=top>
Highlight <b>continue</b> on the on-screen keyboard.
<TR>
<TD align=right valign=top>
2.
<TD valign=top>
Press the center button until the next text box is highlighted.
</table>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="PreviousTextBox"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,91 @@
data = `
<html>
<head>
<title>The on-screen keyboard</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
The on-screen keyboard&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
You can use your WebTV
remote control to type. When you
need to type text, you'll see a text box that looks like this:
<center><form action='client:donothing'>
<textarea
bgcolor=#2A562A
text=#efefef
cursor=#cc9933
font=proportional
width=280
rows=1
autoactivate
autoascii
nohighlight>
</textarea></form></center>
<p>
Press the center
button to make the on-screen keyboard appear.
<p>
A small yellow line in the text box shows where
the letters you type will appear. Now you can type.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="Capitals"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,83 @@
data = `
<html>
<head>
<title>The on-screen keyboard</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
The on-screen keyboard&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
To move to the previous text box on the same page:
<p><table>
<TR>
<TD align=right valign=top>
1.
<TD valign=top>
Choose the up arrow on the on-screen keyboard.
<TR>
<TD align=right valign=top>
2.
<TD valign=top>
Press the center button.
</table>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="InsertingSpace"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,79 @@
data = `
<html>
<head>
<title>The Options panel</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
The Options panel&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
Choose <b>send</b> if you're on a Web page
and you want to tell someone about it.
<p>
Just fill in the person's e-mail address,
and they'll receive a message telling them
the page's address.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"`;
if (request_headers.query.goBack == "true")
data += "action=client:goback value=Done"
else
data += "action=Print value=Continue"
data += `
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,60 @@
<html>
<head>
<title>The Options panel</title>
<link rel="next" href="images/help/tips/options-plus-all-msn.jpg">
<display
noscroll
>
<script language='Javascript'>
function noBackHelp(gvnStr) { str = ( "wtv-guide:/nobackSubtopic?topic=Tips&subtopic=Options&endUrl=" + escape(gvnStr) )
location.href = str;
}
function goToHelpUrl(gvnTop,gvnSub,gvnPag) { str = getHelpUrl(gvnTop,gvnSub,gvnPag);
goToUrl(str);
}
function goToFAQURL(targetURL) { document.location = targetURL;
}
function goToUrl(gvnStr) { document.pageInfo.action=gvnStr;
document.pageInfo.submit();
}
function goToHelpCenter(gvnStr) { document.helpCenterInfo.action= ("http://127.0.0.1/HelpCenter/" + gvnStr);
document.helpCenterInfo.submit();
}
function goBackToUrl(gvnStr, wholeString) { /*
If the URL is at the beginning of any item in the backlist,
go back to it. If not, just go to it. If wholeString is
specified, it looks for perfect matches of the whole string.
Remove wtv-token from the URL because it changes, inscrutably, from page to page and is probably no longer what it was when you were first referred to help.
*/
ind = gvnStr.indexOf("wtv-token");
if (ind > -1) { gvnStr = gvnStr.substring(0,ind);
}
window.message("gvnStr=" + gvnStr);
foundInBackList = false;
for (i=history.length; i--; i>0 ) { if ( wholeString != null ) { testStr = history[i];
} else { str = history[i];
testStr = str.substring(0, gvnStr.length);
}
if ( testStr == gvnStr ) { i++;
foundInBackList = true;
break;
}
}
if (foundInBackList == true) { history.go(i-history.length);
} else { goToUrl(gvnStr);
}
}
function getHelpUrl(gvnTop,gvnSub,gvnPag) { if (gvnTop == 'Index')
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
else
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
if (gvnSub != "")
tmpStr += ('&subtopic=' + gvnSub);
if (gvnPag != "")
tmpStr += ('&page=' + gvnPag);
return tmpStr;
}
function endDiploma() { location.href = document.pageInfo.doneUrl.value;
}
function noBackDiploma() { noBackHelp(document.pageInfo.doneUrl.value);
}

View File

@@ -0,0 +1,70 @@
<html>
<head>
<title>The Options panel</title>
<link rel="next" href="images/help/tips/options-plus-all-msn.jpg">
<display
noscroll
>
<script language='Javascript'>
function noBackHelp(gvnStr) { str = ( "wtv-guide:/nobackSubtopic?topic=Tips&subtopic=Options&endUrl=" + escape(gvnStr) )
location.href = str;
}
function goToHelpUrl(gvnTop,gvnSub,gvnPag) { str = getHelpUrl(gvnTop,gvnSub,gvnPag);
goToUrl(str);
}
function goToFAQURL(targetURL) { document.location = targetURL;
}
function goToUrl(gvnStr) { document.pageInfo.action=gvnStr;
document.pageInfo.submit();
}
function goToHelpCenter(gvnStr) { document.helpCenterInfo.action= ("http://127.0.0.1/HelpCenter/" + gvnStr);
document.helpCenterInfo.submit();
}
function goBackToUrl(gvnStr, wholeString) { /*
If the URL is at the beginning of any item in the backlist,
go back to it. If not, just go to it. If wholeString is
specified, it looks for perfect matches of the whole string.
Remove wtv-token from the URL because it changes, inscrutably, from page to page and is probably no longer what it was when you were first referred to help.
*/
ind = gvnStr.indexOf("wtv-token");
if (ind > -1) { gvnStr = gvnStr.substring(0,ind);
}
window.message("gvnStr=" + gvnStr);
foundInBackList = false;
for (i=history.length; i--; i>0 ) { if ( wholeString != null ) { testStr = history[i];
} else { str = history[i];
testStr = str.substring(0, gvnStr.length);
}
if ( testStr == gvnStr ) { i++;
foundInBackList = true;
break;
}
}
if (foundInBackList == true) { history.go(i-history.length);
} else { goToUrl(gvnStr);
}
}
function getHelpUrl(gvnTop,gvnSub,gvnPag) { if (gvnTop == 'Index')
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
else
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
if (gvnSub != "")
tmpStr += ('&subtopic=' + gvnSub);
if (gvnPag != "")
tmpStr += ('&page=' + gvnPag);
return tmpStr;
}
function endDiploma() { location.href = document.pageInfo.doneUrl.value;
}
function noBackDiploma() { noBackHelp(document.pageInfo.doneUrl.value);
}
</script>
</head>
<body hspace=0 vspace=0
text=D2D2D3
link=D2D2D3
vlink=D2D2D3
fontsize=medium
bgcolor=2D3131
>
<form name='helpCenterInfo' method='get'>

View File

@@ -0,0 +1,57 @@
<html>
<head>
<title>The Options panel</title>
<link rel="next" href="images/help/tips/options-plus-all-msn.jpg">
<display
noscroll
>
<script language='Javascript'>
function noBackHelp(gvnStr) { str = ( "wtv-guide:/nobackSubtopic?topic=Tips&subtopic=Options&endUrl=" + escape(gvnStr) )
location.href = str;
}
function goToHelpUrl(gvnTop,gvnSub,gvnPag) { str = getHelpUrl(gvnTop,gvnSub,gvnPag);
goToUrl(str);
}
function goToFAQURL(targetURL) { document.location = targetURL;
}
function goToUrl(gvnStr) { document.pageInfo.action=gvnStr;
document.pageInfo.submit();
}
function goToHelpCenter(gvnStr) { document.helpCenterInfo.action= ("http://127.0.0.1/HelpCenter/" + gvnStr);
document.helpCenterInfo.submit();
}
function goBackToUrl(gvnStr, wholeString) { /*
If the URL is at the beginning of any item in the backlist,
go back to it. If not, just go to it. If wholeString is
specified, it looks for perfect matches of the whole string.
Remove wtv-token from the URL because it changes, inscrutably, from page to page and is probably no longer what it was when you were first referred to help.
*/
ind = gvnStr.indexOf("wtv-token");
if (ind > -1) { gvnStr = gvnStr.substring(0,ind);
}
window.message("gvnStr=" + gvnStr);
foundInBackList = false;
for (i=history.length; i--; i>0 ) { if ( wholeString != null ) { testStr = history[i];
} else { str = history[i];
testStr = str.substring(0, gvnStr.length);
}
if ( testStr == gvnStr ) { i++;
foundInBackList = true;
break;
}
}
if (foundInBackList == true) { history.go(i-history.length);
} else { goToUrl(gvnStr);
}
}
function getHelpUrl(gvnTop,gvnSub,gvnPag) { if (gvnTop == 'Index')
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
else
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
if (gvnSub != "")
tmpStr += ('&subtopic=' + gvnSub);
if (gvnPag != "")
tmpStr += ('&page=' + gvnPag);
return tmpStr;
}
function endDiploma() { location.href = document.pageInfo.doneUrl.value;

View File

@@ -0,0 +1,55 @@
<html>
<head>
<title>The Options panel</title>
<link rel="next" href="images/help/tips/options-plus-all-msn.jpg">
<display
noscroll
>
<script language='Javascript'>
function noBackHelp(gvnStr) { str = ( "wtv-guide:/nobackSubtopic?topic=Tips&subtopic=Options&endUrl=" + escape(gvnStr) )
location.href = str;
}
function goToHelpUrl(gvnTop,gvnSub,gvnPag) { str = getHelpUrl(gvnTop,gvnSub,gvnPag);
goToUrl(str);
}
function goToFAQURL(targetURL) { document.location = targetURL;
}
function goToUrl(gvnStr) { document.pageInfo.action=gvnStr;
document.pageInfo.submit();
}
function goToHelpCenter(gvnStr) { document.helpCenterInfo.action= ("http://127.0.0.1/HelpCenter/" + gvnStr);
document.helpCenterInfo.submit();
}
function goBackToUrl(gvnStr, wholeString) { /*
If the URL is at the beginning of any item in the backlist,
go back to it. If not, just go to it. If wholeString is
specified, it looks for perfect matches of the whole string.
Remove wtv-token from the URL because it changes, inscrutably, from page to page and is probably no longer what it was when you were first referred to help.
*/
ind = gvnStr.indexOf("wtv-token");
if (ind > -1) { gvnStr = gvnStr.substring(0,ind);
}
window.message("gvnStr=" + gvnStr);
foundInBackList = false;
for (i=history.length; i--; i>0 ) { if ( wholeString != null ) { testStr = history[i];
} else { str = history[i];
testStr = str.substring(0, gvnStr.length);
}
if ( testStr == gvnStr ) { i++;
foundInBackList = true;
break;
}
}
if (foundInBackList == true) { history.go(i-history.length);
} else { goToUrl(gvnStr);
}
}
function getHelpUrl(gvnTop,gvnSub,gvnPag) { if (gvnTop == 'Index')
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
else
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
if (gvnSub != "")
tmpStr += ('&subtopic=' + gvnSub);
if (gvnPag != "")
tmpStr += ('&page=' + gvnPag);
return tmpStr;

View File

@@ -0,0 +1,71 @@
<html>
<head>
<title>The Options panel</title>
<link rel="next" href="images/help/tips/options-plus-all-msn.jpg">
<display
noscroll
>
<script language='Javascript'>
function noBackHelp(gvnStr) { str = ( "wtv-guide:/nobackSubtopic?topic=Tips&subtopic=Options&endUrl=" + escape(gvnStr) )
location.href = str;
}
function goToHelpUrl(gvnTop,gvnSub,gvnPag) { str = getHelpUrl(gvnTop,gvnSub,gvnPag);
goToUrl(str);
}
function goToFAQURL(targetURL) { document.location = targetURL;
}
function goToUrl(gvnStr) { document.pageInfo.action=gvnStr;
document.pageInfo.submit();
}
function goToHelpCenter(gvnStr) { document.helpCenterInfo.action= ("http://127.0.0.1/HelpCenter/" + gvnStr);
document.helpCenterInfo.submit();
}
function goBackToUrl(gvnStr, wholeString) { /*
If the URL is at the beginning of any item in the backlist,
go back to it. If not, just go to it. If wholeString is
specified, it looks for perfect matches of the whole string.
Remove wtv-token from the URL because it changes, inscrutably, from page to page and is probably no longer what it was when you were first referred to help.
*/
ind = gvnStr.indexOf("wtv-token");
if (ind > -1) { gvnStr = gvnStr.substring(0,ind);
}
window.message("gvnStr=" + gvnStr);
foundInBackList = false;
for (i=history.length; i--; i>0 ) { if ( wholeString != null ) { testStr = history[i];
} else { str = history[i];
testStr = str.substring(0, gvnStr.length);
}
if ( testStr == gvnStr ) { i++;
foundInBackList = true;
break;
}
}
if (foundInBackList == true) { history.go(i-history.length);
} else { goToUrl(gvnStr);
}
}
function getHelpUrl(gvnTop,gvnSub,gvnPag) { if (gvnTop == 'Index')
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
else
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
if (gvnSub != "")
tmpStr += ('&subtopic=' + gvnSub);
if (gvnPag != "")
tmpStr += ('&page=' + gvnPag);
return tmpStr;
}
function endDiploma() { location.href = document.pageInfo.doneUrl.value;
}
function noBackDiploma() { noBackHelp(document.pageInfo.doneUrl.value);
}
</script>
</head>
<body hspace=0 vspace=0
text=D2D2D3
link=D2D2D3
vlink=D2D2D3
fontsize=medium
bgcolor=2D3131
>
<form name='helpCenterInfo' method='get'>
<input type='hidden' name="userName" value="jarhead">

View File

@@ -0,0 +1,71 @@
<html>
<head>
<title>The Options panel</title>
<link rel="next" href="images/help/tips/options-plus-all-msn.jpg">
<display
noscroll
>
<script language='Javascript'>
function noBackHelp(gvnStr) { str = ( "wtv-guide:/nobackSubtopic?topic=Tips&subtopic=Options&endUrl=" + escape(gvnStr) )
location.href = str;
}
function goToHelpUrl(gvnTop,gvnSub,gvnPag) { str = getHelpUrl(gvnTop,gvnSub,gvnPag);
goToUrl(str);
}
function goToFAQURL(targetURL) { document.location = targetURL;
}
function goToUrl(gvnStr) { document.pageInfo.action=gvnStr;
document.pageInfo.submit();
}
function goToHelpCenter(gvnStr) { document.helpCenterInfo.action= ("http://127.0.0.1/HelpCenter/" + gvnStr);
document.helpCenterInfo.submit();
}
function goBackToUrl(gvnStr, wholeString) { /*
If the URL is at the beginning of any item in the backlist,
go back to it. If not, just go to it. If wholeString is
specified, it looks for perfect matches of the whole string.
Remove wtv-token from the URL because it changes, inscrutably, from page to page and is probably no longer what it was when you were first referred to help.
*/
ind = gvnStr.indexOf("wtv-token");
if (ind > -1) { gvnStr = gvnStr.substring(0,ind);
}
window.message("gvnStr=" + gvnStr);
foundInBackList = false;
for (i=history.length; i--; i>0 ) { if ( wholeString != null ) { testStr = history[i];
} else { str = history[i];
testStr = str.substring(0, gvnStr.length);
}
if ( testStr == gvnStr ) { i++;
foundInBackList = true;
break;
}
}
if (foundInBackList == true) { history.go(i-history.length);
} else { goToUrl(gvnStr);
}
}
function getHelpUrl(gvnTop,gvnSub,gvnPag) { if (gvnTop == 'Index')
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
else
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
if (gvnSub != "")
tmpStr += ('&subtopic=' + gvnSub);
if (gvnPag != "")
tmpStr += ('&page=' + gvnPag);
return tmpStr;
}
function endDiploma() { location.href = document.pageInfo.doneUrl.value;
}
function noBackDiploma() { noBackHelp(document.pageInfo.doneUrl.value);
}
</script>
</head>
<body hspace=0 vspace=0
text=D2D2D3
link=D2D2D3
vlink=D2D2D3
fontsize=medium
bgcolor=2D3131
>
<form name='helpCenterInfo' method='get'>
<input type='hidden' name="userName" value="jarhead">

View File

@@ -0,0 +1,58 @@
<html>
<head>
<title>The Options panel</title>
<link rel="next" href="images/help/tips/options-plus-all-msn.jpg">
<display
noscroll
>
<script language='Javascript'>
function noBackHelp(gvnStr) { str = ( "wtv-guide:/nobackSubtopic?topic=Tips&subtopic=Options&endUrl=" + escape(gvnStr) )
location.href = str;
}
function goToHelpUrl(gvnTop,gvnSub,gvnPag) { str = getHelpUrl(gvnTop,gvnSub,gvnPag);
goToUrl(str);
}
function goToFAQURL(targetURL) { document.location = targetURL;
}
function goToUrl(gvnStr) { document.pageInfo.action=gvnStr;
document.pageInfo.submit();
}
function goToHelpCenter(gvnStr) { document.helpCenterInfo.action= ("http://127.0.0.1/HelpCenter/" + gvnStr);
document.helpCenterInfo.submit();
}
function goBackToUrl(gvnStr, wholeString) { /*
If the URL is at the beginning of any item in the backlist,
go back to it. If not, just go to it. If wholeString is
specified, it looks for perfect matches of the whole string.
Remove wtv-token from the URL because it changes, inscrutably, from page to page and is probably no longer what it was when you were first referred to help.
*/
ind = gvnStr.indexOf("wtv-token");
if (ind > -1) { gvnStr = gvnStr.substring(0,ind);
}
window.message("gvnStr=" + gvnStr);
foundInBackList = false;
for (i=history.length; i--; i>0 ) { if ( wholeString != null ) { testStr = history[i];
} else { str = history[i];
testStr = str.substring(0, gvnStr.length);
}
if ( testStr == gvnStr ) { i++;
foundInBackList = true;
break;
}
}
if (foundInBackList == true) { history.go(i-history.length);
} else { goToUrl(gvnStr);
}
}
function getHelpUrl(gvnTop,gvnSub,gvnPag) { if (gvnTop == 'Index')
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
else
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
if (gvnSub != "")
tmpStr += ('&subtopic=' + gvnSub);
if (gvnPag != "")
tmpStr += ('&page=' + gvnPag);
return tmpStr;
}
function endDiploma() { location.href = document.pageInfo.doneUrl.value;
}

View File

@@ -0,0 +1,72 @@
<html>
<head>
<title>The Options panel</title>
<link rel="next" href="images/help/tips/options-plus-all-msn.jpg">
<display
noscroll
>
<script language='Javascript'>
function noBackHelp(gvnStr) { str = ( "wtv-guide:/nobackSubtopic?topic=Tips&subtopic=Options&endUrl=" + escape(gvnStr) )
location.href = str;
}
function goToHelpUrl(gvnTop,gvnSub,gvnPag) { str = getHelpUrl(gvnTop,gvnSub,gvnPag);
goToUrl(str);
}
function goToFAQURL(targetURL) { document.location = targetURL;
}
function goToUrl(gvnStr) { document.pageInfo.action=gvnStr;
document.pageInfo.submit();
}
function goToHelpCenter(gvnStr) { document.helpCenterInfo.action= ("http://127.0.0.1/HelpCenter/" + gvnStr);
document.helpCenterInfo.submit();
}
function goBackToUrl(gvnStr, wholeString) { /*
If the URL is at the beginning of any item in the backlist,
go back to it. If not, just go to it. If wholeString is
specified, it looks for perfect matches of the whole string.
Remove wtv-token from the URL because it changes, inscrutably, from page to page and is probably no longer what it was when you were first referred to help.
*/
ind = gvnStr.indexOf("wtv-token");
if (ind > -1) { gvnStr = gvnStr.substring(0,ind);
}
window.message("gvnStr=" + gvnStr);
foundInBackList = false;
for (i=history.length; i--; i>0 ) { if ( wholeString != null ) { testStr = history[i];
} else { str = history[i];
testStr = str.substring(0, gvnStr.length);
}
if ( testStr == gvnStr ) { i++;
foundInBackList = true;
break;
}
}
if (foundInBackList == true) { history.go(i-history.length);
} else { goToUrl(gvnStr);
}
}
function getHelpUrl(gvnTop,gvnSub,gvnPag) { if (gvnTop == 'Index')
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
else
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
if (gvnSub != "")
tmpStr += ('&subtopic=' + gvnSub);
if (gvnPag != "")
tmpStr += ('&page=' + gvnPag);
return tmpStr;
}
function endDiploma() { location.href = document.pageInfo.doneUrl.value;
}
function noBackDiploma() { noBackHelp(document.pageInfo.doneUrl.value);
}
</script>
</head>
<body hspace=0 vspace=0
text=D2D2D3
link=D2D2D3
vlink=D2D2D3
fontsize=medium
bgcolor=2D3131
>
<form name='helpCenterInfo' method='get'>
<input type='hidden' name="userName" value="jarhead">
<input type='hidden' name="ACHinfo" value="true">

View File

@@ -0,0 +1,59 @@
<html>
<head>
<title>The Options panel</title>
<link rel="next" href="images/help/tips/options-plus-all-msn.jpg">
<display
noscroll
>
<script language='Javascript'>
function noBackHelp(gvnStr) { str = ( "wtv-guide:/nobackSubtopic?topic=Tips&subtopic=Options&endUrl=" + escape(gvnStr) )
location.href = str;
}
function goToHelpUrl(gvnTop,gvnSub,gvnPag) { str = getHelpUrl(gvnTop,gvnSub,gvnPag);
goToUrl(str);
}
function goToFAQURL(targetURL) { document.location = targetURL;
}
function goToUrl(gvnStr) { document.pageInfo.action=gvnStr;
document.pageInfo.submit();
}
function goToHelpCenter(gvnStr) { document.helpCenterInfo.action= ("http://127.0.0.1/HelpCenter/" + gvnStr);
document.helpCenterInfo.submit();
}
function goBackToUrl(gvnStr, wholeString) { /*
If the URL is at the beginning of any item in the backlist,
go back to it. If not, just go to it. If wholeString is
specified, it looks for perfect matches of the whole string.
Remove wtv-token from the URL because it changes, inscrutably, from page to page and is probably no longer what it was when you were first referred to help.
*/
ind = gvnStr.indexOf("wtv-token");
if (ind > -1) { gvnStr = gvnStr.substring(0,ind);
}
window.message("gvnStr=" + gvnStr);
foundInBackList = false;
for (i=history.length; i--; i>0 ) { if ( wholeString != null ) { testStr = history[i];
} else { str = history[i];
testStr = str.substring(0, gvnStr.length);
}
if ( testStr == gvnStr ) { i++;
foundInBackList = true;
break;
}
}
if (foundInBackList == true) { history.go(i-history.length);
} else { goToUrl(gvnStr);
}
}
function getHelpUrl(gvnTop,gvnSub,gvnPag) { if (gvnTop == 'Index')
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
else
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
if (gvnSub != "")
tmpStr += ('&subtopic=' + gvnSub);
if (gvnPag != "")
tmpStr += ('&page=' + gvnPag);
return tmpStr;
}
function endDiploma() { location.href = document.pageInfo.doneUrl.value;
}
function noBackDiploma() { noBackHelp(document.pageInfo.doneUrl.value);

View File

@@ -0,0 +1,69 @@
<html>
<head>
<title>The Options panel</title>
<display
noscroll
>
<script language='Javascript'>
function noBackHelp(gvnStr) { str = ( "wtv-guide:/nobackSubtopic?topic=Tips&subtopic=Options&endUrl=" + escape(gvnStr) )
location.href = str;
}
function goToHelpUrl(gvnTop,gvnSub,gvnPag) { str = getHelpUrl(gvnTop,gvnSub,gvnPag);
goToUrl(str);
}
function goToFAQURL(targetURL) { document.location = targetURL;
}
function goToUrl(gvnStr) { document.pageInfo.action=gvnStr;
document.pageInfo.submit();
}
function goToHelpCenter(gvnStr) { document.helpCenterInfo.action= ("http://127.0.0.1/HelpCenter/" + gvnStr);
document.helpCenterInfo.submit();
}
function goBackToUrl(gvnStr, wholeString) { /*
If the URL is at the beginning of any item in the backlist,
go back to it. If not, just go to it. If wholeString is
specified, it looks for perfect matches of the whole string.
Remove wtv-token from the URL because it changes, inscrutably, from page to page and is probably no longer what it was when you were first referred to help.
*/
ind = gvnStr.indexOf("wtv-token");
if (ind > -1) { gvnStr = gvnStr.substring(0,ind);
}
window.message("gvnStr=" + gvnStr);
foundInBackList = false;
for (i=history.length; i--; i>0 ) { if ( wholeString != null ) { testStr = history[i];
} else { str = history[i];
testStr = str.substring(0, gvnStr.length);
}
if ( testStr == gvnStr ) { i++;
foundInBackList = true;
break;
}
}
if (foundInBackList == true) { history.go(i-history.length);
} else { goToUrl(gvnStr);
}
}
function getHelpUrl(gvnTop,gvnSub,gvnPag) { if (gvnTop == 'Index')
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
else
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
if (gvnSub != "")
tmpStr += ('&subtopic=' + gvnSub);
if (gvnPag != "")
tmpStr += ('&page=' + gvnPag);
return tmpStr;
}
function endDiploma() { location.href = document.pageInfo.doneUrl.value;
}
function noBackDiploma() { noBackHelp(document.pageInfo.doneUrl.value);
}
</script>
</head>
<body hspace=0 vspace=0
text=D2D2D3
link=D2D2D3
vlink=D2D2D3
fontsize=medium
bgcolor=2D3131
>
<form name='helpCenterInfo' method='get'>

View File

@@ -0,0 +1,56 @@
<html>
<head>
<title>The Options panel</title>
<link rel="next" href="images/help/tips/options-plus-all-msn.jpg">
<display
noscroll
>
<script language='Javascript'>
function noBackHelp(gvnStr) { str = ( "wtv-guide:/nobackSubtopic?topic=Tips&subtopic=Options&endUrl=" + escape(gvnStr) )
location.href = str;
}
function goToHelpUrl(gvnTop,gvnSub,gvnPag) { str = getHelpUrl(gvnTop,gvnSub,gvnPag);
goToUrl(str);
}
function goToFAQURL(targetURL) { document.location = targetURL;
}
function goToUrl(gvnStr) { document.pageInfo.action=gvnStr;
document.pageInfo.submit();
}
function goToHelpCenter(gvnStr) { document.helpCenterInfo.action= ("http://127.0.0.1/HelpCenter/" + gvnStr);
document.helpCenterInfo.submit();
}
function goBackToUrl(gvnStr, wholeString) { /*
If the URL is at the beginning of any item in the backlist,
go back to it. If not, just go to it. If wholeString is
specified, it looks for perfect matches of the whole string.
Remove wtv-token from the URL because it changes, inscrutably, from page to page and is probably no longer what it was when you were first referred to help.
*/
ind = gvnStr.indexOf("wtv-token");
if (ind > -1) { gvnStr = gvnStr.substring(0,ind);
}
window.message("gvnStr=" + gvnStr);
foundInBackList = false;
for (i=history.length; i--; i>0 ) { if ( wholeString != null ) { testStr = history[i];
} else { str = history[i];
testStr = str.substring(0, gvnStr.length);
}
if ( testStr == gvnStr ) { i++;
foundInBackList = true;
break;
}
}
if (foundInBackList == true) { history.go(i-history.length);
} else { goToUrl(gvnStr);
}
}
function getHelpUrl(gvnTop,gvnSub,gvnPag) { if (gvnTop == 'Index')
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
else
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
if (gvnSub != "")
tmpStr += ('&subtopic=' + gvnSub);
if (gvnPag != "")
tmpStr += ('&page=' + gvnPag);
return tmpStr;
}

View File

@@ -0,0 +1,62 @@
<html>
<head>
<title>The Options panel</title>
<display
noscroll
>
<script language='Javascript'>
function noBackHelp(gvnStr) { str = ( "wtv-guide:/nobackSubtopic?topic=Tips&subtopic=Options&endUrl=" + escape(gvnStr) )
location.href = str;
}
function goToHelpUrl(gvnTop,gvnSub,gvnPag) { str = getHelpUrl(gvnTop,gvnSub,gvnPag);
goToUrl(str);
}
function goToFAQURL(targetURL) { document.location = targetURL;
}
function goToUrl(gvnStr) { document.pageInfo.action=gvnStr;
document.pageInfo.submit();
}
function goToHelpCenter(gvnStr) { document.helpCenterInfo.action= ("http://127.0.0.1/HelpCenter/" + gvnStr);
document.helpCenterInfo.submit();
}
function goBackToUrl(gvnStr, wholeString) { /*
If the URL is at the beginning of any item in the backlist,
go back to it. If not, just go to it. If wholeString is
specified, it looks for perfect matches of the whole string.
Remove wtv-token from the URL because it changes, inscrutably, from page to page and is probably no longer what it was when you were first referred to help.
*/
ind = gvnStr.indexOf("wtv-token");
if (ind > -1) { gvnStr = gvnStr.substring(0,ind);
}
window.message("gvnStr=" + gvnStr);
foundInBackList = false;
for (i=history.length; i--; i>0 ) { if ( wholeString != null ) { testStr = history[i];
} else { str = history[i];
testStr = str.substring(0, gvnStr.length);
}
if ( testStr == gvnStr ) { i++;
foundInBackList = true;
break;
}
}
if (foundInBackList == true) { history.go(i-history.length);
} else { goToUrl(gvnStr);
}
}
function getHelpUrl(gvnTop,gvnSub,gvnPag) { if (gvnTop == 'Index')
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
else
tmpStr = ('wtv-guide:/help?topic=' + gvnTop);
if (gvnSub != "")
tmpStr += ('&subtopic=' + gvnSub);
if (gvnPag != "")
tmpStr += ('&page=' + gvnPag);
return tmpStr;
}
function endDiploma() { location.href = document.pageInfo.doneUrl.value;
}
function noBackDiploma() { noBackHelp(document.pageInfo.doneUrl.value);
}
</script>
</head>
<body hspace=0 vspace=0

View File

@@ -0,0 +1,79 @@
data = `
<html>
<head>
<title>Adding users</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Adding users&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
You can add up to five additional users to your
account at no extra charge.
<p>
Each user has a different e-mail
address and password, a separate list of
favorites, and other personal settings.
<p>
Each time you connect to WebTV,
you'll log on as whichever user you choose.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="?topic=Users&subtopic=AddUser&page=2"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,74 @@
data = `
<html>
<head>
<title>Adding users</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Adding users&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
When you add a user, you can set restrictions to make it more child-friendly.
<p>
You can block a user's access to inappropriate Web sites.
You can also block access to e-mail, discussion groups, chat rooms, or Web page building.
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="?topic=Users&subtopic=AddUser&page=3"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

View File

@@ -0,0 +1,78 @@
data = `
<html>
<head>
<title>Adding users</title>
<display
noscroll
showwhencomplete
>
</head>
<body hspace=0 vspace=0
text='E6E6E6' link='E6E6E6' vlink='E6E6E6'
fontsize='medium'
bgcolor=00292f
>
<table cellspacing=0 cellpadding=0>
<tr>
<td width=560 height=96 valign=top>
<table background="wtv-guide:/ROMCache/help/common/helpMastheadBlank.swf" width=560 height=96 cellspacing=0 cellpadding=0>
<tr>
<td width=107 height=96 valign=top rowspan=2>
<spacer type=vertical height=7><br>
<spacer type=horizontal width=7>
<a href='wtv-home:/home'>
<img src="${minisrv_config.config.service_logo}" width=87 height=67>
</a>
<td width=453 valign=top>
<spacer type=vertical height=54><br>
<font size=+3><blackface>
Adding users&nbsp;
</blackface></font>
<tr>
<td align=right>
&nbsp;
</table>
<tr>
<td width=560 valign=top height=225>
<table cellpadding=0 cellspacing=0 width=560>
<tr>
<td width=25 height=17>
<td width=535>
<tr>
<td>
<td height=225 rowspan=2 valign=top>
<table cellpadding=0 cellspacing=0 height=225 width=535>
<tr>
<td height=15>
<tr>
<td>
<td valign=top>
Each user you add to your account has its own e-mail address. When you add a new user, you'll create an Internet name, and you'll have a new e-mail address based on that name.
<p>
WebTV Internet names must:
<ul>
<li> Begin with a letter
<li> Contain letters and numbers only
<li> Not contain any spaces or hyphens
</ul>
<tr>
<td width=35>
<td width=450>
<td width=50>
</table>
</table>
<tr>
<td valign=bottom align=right>
<form>
<font color=ffcf69><shadow>
<input type=button usestyle borderimage="file://ROM/Borders/ButtonBorder2.bif"
action="?topic=Users&subtopic=AddUser&page=4"
value="Continue"
width='110'
selected>
<spacer type=horizontal width=20>
</shadow></font>
</form>
</table>
</body>
`;

Some files were not shown because too many files have changed in this diff Show More