1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-06-17 07:40:47 +03:00

Further work on removing hard-wired colours, to support Dark Mode apps

This commit is contained in:
Graham Nelson 2022-06-16 23:42:17 +01:00 committed by Zed Lopez
parent dfa4b11945
commit e793942a71
40 changed files with 5624 additions and 5397 deletions

View file

@ -1,6 +1,6 @@
# Inform 7
v10.1.0-beta+6V23 'Krypton' (13 June 2022)
v10.1.0-beta+6V24 'Krypton' (16 June 2022)
## About Inform 7

View file

@ -1,3 +1,3 @@
Prerelease: beta
Build Date: 13 June 2022
Build Number: 6V23
Build Date: 16 June 2022
Build Number: 6V24

View file

@ -317,11 +317,8 @@ until they put matters right.
@ Standard rows have black text on striped background colours, these being
the usual ones seen in Mac OS X applications such as iTunes.
@d FIRST_STRIPE_COLOUR "#ffffff"
@d SECOND_STRIPE_COLOUR "#f3f6fa"
@<Display the sorted version of the census@> =
HTML::begin_html_table(OUT, FIRST_STRIPE_COLOUR, TRUE, 0, 0, 2, 0, 0);
HTML::begin_html_table(OUT, I"stripeone", TRUE, 0, 0, 2, 0, 0);
@<Show a titling row explaining the census sorting, if necessary@>;
int stripe = 0;
TEMPORARY_TEXT(current_author_name)
@ -331,9 +328,9 @@ the usual ones seen in Mac OS X applications such as iTunes.
@<Insert a subtitling row in the census sorting, if necessary@>;
stripe = 1 - stripe;
if (stripe == 0)
HTML::first_html_column_coloured(OUT, 0, SECOND_STRIPE_COLOUR, 0);
HTML::first_html_column_coloured(OUT, 0, I"stripetwo", 0);
else
HTML::first_html_column_coloured(OUT, 0, FIRST_STRIPE_COLOUR, 0);
HTML::first_html_column_coloured(OUT, 0, I"stripeone", 0);
@<Print the census line for this extension@>;
HTML::end_html_row(OUT);
}
@ -387,12 +384,10 @@ the usual ones seen in Mac OS X applications such as iTunes.
@ Usually white text on a grey background.
@d CENSUS_TITLING_BG "#808080"
@<Begin a tinted census line@> =
int span = 4;
if (d == SORT_CE_BY_TITLE) span = 3;
HTML::first_html_column_coloured(OUT, 0, CENSUS_TITLING_BG, span);
HTML::first_html_column_coloured(OUT, 0, I"tintedrow", span);
HTML::begin_span(OUT, I"extensioncensusentry");
WRITE("&nbsp;");

View file

@ -143,6 +143,19 @@ span.extensionindexerror {
color: #ff8080;
}
/* This is used in extension documentation, where an example is presented
in a slightly tinted box: */
table.extensionexample {
background-color: #f0f0f0;
}
span.extensionexampleletter {
color: #202020;
font-size: 14px;
font-weight: bold;
}
/* Seen in problem messages: */
span.problemred {
@ -221,6 +234,18 @@ span.librarycardother {
color: var(--library-card-other-colour);
}
/* Generically used for "more details" boxes in the index: */
table.indexmorebox {
background-color: #e0e0e0;
}
/* But not for activity contents: */
table.indexactivitycontents {
background-color: #e8e0c0;
}
/* For responses in index entries about rules: */
span.indexresponseletter {
@ -235,8 +260,16 @@ span.indexresponsetext {
/* Used ubiquitously throughout the index for unemphasised text: */
span.indexblack {
color: #000000;
}
span.indexgrey {
color: #808080;
color: #808080;
}
span.indexdarkgrey {
color: #505050;
}
span.indexdullred {
@ -251,6 +284,54 @@ span.indexdullblue {
color: #000080;
}
/* Used in the numbering of levels of the World map in the Index */
span.indexmaplevelnumbers {
color: #c0c0c0;
}
/* Used for the room squares in the World map in the Index (which is currently
a table with one row of one column) */
table.indexmaproom {
border-color: #000000;
}
/* Used in the numbering of levels of the World map in the Index */
span.indexmaplevelnumbers {
color: #c0c0c0;
}
/* Used e.g. for title rows in the Chart of basic kinds in the Index */
tr.headingrow {
background-color: #e0e0e0;
}
/* Standard rows have black text on striped background colours, these being
the usual ones seen in Mac OS X applications such as iTunes. */
tr.stripeone {
background-color: #ffffff;
}
tr.stripetwo {
background-color: #f3f6fa;
}
tr.tintedrow {
background-color: #808080;
}
/* In the Figures index, this is the background colour used behind images
(though in fact it will only be visible if the image fails to load, or uses
transparency): */
div.figureindexbox {
background-color: #6495ed;
}
/* To get the book-contents-page style leaders on the Contents element of
the index to work, these must use the background colour of the body of
the page, whatever that is: */
@ -260,4 +341,4 @@ ul.leaders li.leaded span:first-child {
}
ul.leaders li.leaded span + span {
background: var(--leaders-background-colour);
}
}

View file

@ -116,6 +116,19 @@ span.extensionindexerror {
color: #ff8080;
}
/* This is used in extension documentation, where an example is presented
in a slightly tinted box: */
table.extensionexample {
background-color: #f0f0f0;
}
span.extensionexampleletter {
color: #202020;
font-size: 14px;
font-weight: bold;
}
/* Seen in problem messages: */
span.problemred {
@ -194,6 +207,18 @@ span.librarycardother {
color: #303030;
}
/* Generically used for "more details" boxes in the index: */
table.indexmorebox {
background-color: #e0e0e0;
}
/* But not for activity contents: */
table.indexactivitycontents {
background-color: #e8e0c0;
}
/* For responses in index entries about rules: */
span.indexresponseletter {
@ -208,10 +233,18 @@ span.indexresponsetext {
/* Used ubiquitously throughout the index for unemphasised text: */
span.indexblack {
color: #000000;
}
span.indexgrey {
color: #808080;
}
span.indexdarkgrey {
color: #505050;
}
span.indexdullred {
color: #800000;
}
@ -224,6 +257,48 @@ span.indexdullblue {
color: #000080;
}
/* Used for the room squares in the World map in the Index (which is currently
a table with one row of one column) */
table.indexmaproom {
border-color: #000000;
}
/* Used in the numbering of levels of the World map in the Index */
span.indexmaplevelnumbers {
color: #c0c0c0;
}
/* Used e.g. for title rows in the Chart of basic kinds in the Index */
tr.headingrow {
background-color: #e0e0e0;
}
/* Standard rows have black text on striped background colours, these being
the usual ones seen in Mac OS X applications such as iTunes. */
tr.stripeone {
background-color: #ffffff;
}
tr.stripetwo {
background-color: #f3f6fa;
}
tr.tintedrow {
background-color: #808080;
}
/* In the Figures index, this is the background colour used behind images
(though in fact it will only be visible if the image fails to load, or uses
transparency): */
div.figureindexbox {
background-color: #6495ed;
}
/* To get the book-contents-page style leaders on the Contents element of
the index to work, these must use the background colour of the body of
the page, whatever that is: */

View file

@ -116,6 +116,19 @@ span.extensionindexerror {
color: #ff8080;
}
/* This is used in extension documentation, where an example is presented
in a slightly tinted box: */
table.extensionexample {
background-color: #f0f0f0;
}
span.extensionexampleletter {
color: #202020;
font-size: 14px;
font-weight: bold;
}
/* Seen in problem messages: */
span.problemred {
@ -194,6 +207,18 @@ span.librarycardother {
color: #303030;
}
/* Generically used for "more details" boxes in the index: */
table.indexmorebox {
background-color: #e0e0e0;
}
/* But not for activity contents: */
table.indexactivitycontents {
background-color: #e8e0c0;
}
/* For responses in index entries about rules: */
span.indexresponseletter {
@ -206,12 +231,20 @@ span.indexresponsetext {
color: #000066;
}
/* Used ubiquitously throughout the index for unemphasised text: */
/* Used ubiquitously throughout the index and extension documentation: */
span.indexblack {
color: #000000;
}
span.indexgrey {
color: #808080;
}
span.indexdarkgrey {
color: #505050;
}
span.indexdullred {
color: #800000;
}
@ -224,6 +257,48 @@ span.indexdullblue {
color: #000080;
}
/* Used for the room squares in the World map in the Index (which is currently
a table with one row of one column) */
table.indexmaproom {
border-color: #000000;
}
/* Used in the numbering of levels of the World map in the Index */
span.indexmaplevelnumbers {
color: #c0c0c0;
}
/* Used e.g. for title rows in the Chart of basic kinds in the Index */
tr.headingrow {
background-color: #e0e0e0;
}
/* Standard rows have black text on striped background colours, these being
the usual ones seen in Mac OS X applications such as iTunes. */
tr.stripeone {
background-color: #ffffff;
}
tr.stripetwo {
background-color: #f3f6fa;
}
tr.tintedrow {
background-color: #808080;
}
/* In the Figures index, this is the background colour used behind images
(though in fact it will only be visible if the image fails to load, or uses
transparency): */
div.figureindexbox {
background-color: #6495ed;
}
/* To get the book-contents-page style leaders on the Contents element of
the index to work, these must use the background colour of the body of
the page, whatever that is: */

View file

@ -1,5 +1,5 @@
1. Cd
<p><a name=LCARD></a><table border="0" cellspacing="3" cellpadding="3" style="background-image:url('inform:/bg_images/indexcard.png');">
<p><a name=LCARD></a><table border="0" cellspacing="3" cellpadding="3" background="inform:/bg_images/indexcard.png">
<tr>
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="librarycardtitle"><span class="typewritten">Story title</span></span>&nbsp;&nbsp;&nbsp;&nbsp;

View file

@ -1,5 +1,5 @@
1. Cd
<p><a name=LCARD></a><table border="0" cellspacing="3" cellpadding="3" style="background-image:url('inform:/bg_images/indexcard.png');">
<p><a name=LCARD></a><table border="0" cellspacing="3" cellpadding="3" background="inform:/bg_images/indexcard.png">
<tr>
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="librarycardtitle"><span class="typewritten">Story title</span></span>&nbsp;&nbsp;&nbsp;&nbsp;

View file

@ -1,11 +1,11 @@
1. Ch
<table border="0" cellspacing="0" cellpadding="0" width=100%>
<tr bgcolor="#888">
<tr class="tintedrow">
<td height="1" colspan="5" cellpadding="0">
</td>
</tr>
<tr bgcolor="#e0e0e0">
<tr class="headingrow">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<b>basic kinds</b>&nbsp;
</td>
@ -22,7 +22,7 @@
<i>under</i>&nbsp;<a href="#" onClick="showBasic('under');"><img border=0 src=inform:/doc_images/shelp.png></a>
</td>
</tr>
<tr bgcolor="#888">
<tr class="tintedrow">
<td height="1" colspan="5" cellpadding="0">
</td>
@ -74,7 +74,7 @@
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
object [15]&nbsp;<a href=#A231><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -91,7 +91,7 @@
<img border=0 alt="cross" src=inform:/doc_images/cross.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
room [1]&nbsp;<a href=inform:/doc27.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#K1_room><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -108,7 +108,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
thing [2]&nbsp;<a href=#K2_thing><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -125,7 +125,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
door [1]&nbsp;<a href=inform:/doc37.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#K4_door><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -142,7 +142,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
mystic portal [1]&nbsp;<a href="source:story.ni#line6"><img border=0 src=inform:/doc_images/Reveal.png></a>&nbsp;<a href=#K16_mystic_portal><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -159,7 +159,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey">container</span>&nbsp;<a href=#K5_container><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -176,7 +176,7 @@
<img border=0 alt="tick" src=inform:/doc_images/greytick.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey">vehicle</span>&nbsp;<a href=inform:/doc41.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#K14_vehicle><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -193,7 +193,7 @@
<img border=0 alt="tick" src=inform:/doc_images/greytick.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey">player's holdall</span>&nbsp;<a href=inform:/doc46.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#K15_player_s_holdall><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -210,7 +210,7 @@
<img border=0 alt="tick" src=inform:/doc_images/greytick.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey">supporter</span>&nbsp;<a href=#K6_supporter><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -227,7 +227,7 @@
<img border=0 alt="tick" src=inform:/doc_images/greytick.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey">backdrop</span>&nbsp;<a href=inform:/doc34.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#K7_backdrop><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -244,7 +244,7 @@
<img border=0 alt="tick" src=inform:/doc_images/greytick.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
person [1]&nbsp;<a href=inform:/doc42.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#K8_person><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -261,7 +261,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey">man</span>&nbsp;<a href=#K10_man><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -278,7 +278,7 @@
<img border=0 alt="tick" src=inform:/doc_images/greytick.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey">woman</span>&nbsp;<a href=#K11_woman><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -295,7 +295,7 @@
<img border=0 alt="tick" src=inform:/doc_images/greytick.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey">animal</span>&nbsp;<a href=#K12_animal><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -312,7 +312,7 @@
<img border=0 alt="tick" src=inform:/doc_images/greytick.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey">device</span>&nbsp;<a href=inform:/doc39.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#K13_device><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -329,7 +329,7 @@
<img border=0 alt="tick" src=inform:/doc_images/greytick.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
direction [12]&nbsp;<a href=inform:/doc51.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#K3_direction><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -346,7 +346,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey">region</span>&nbsp;<a href=inform:/doc29.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#K9_region><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -363,12 +363,12 @@
<img border=0 alt="tick" src=inform:/doc_images/greytick.png>
</td>
</tr>
<tr bgcolor="#888">
<tr class="tintedrow">
<td height="1" colspan="5" cellpadding="0">
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
number&nbsp;<a href="Kinds.html?segment2"><img border=0 src=inform:/doc_images/calc1.png></a>&nbsp;<a href=inform:/doc227.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#A1359><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -385,7 +385,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
real number&nbsp;<a href="Kinds.html?segment2"><img border=0 src=inform:/doc_images/calc1.png></a>&nbsp;<a href=inform:/doc227.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#A1360><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -402,7 +402,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
time&nbsp;<a href="Kinds.html?segment2"><img border=0 src=inform:/doc_images/calc1.png></a>&nbsp;<a href=inform:/doc140.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#A1375><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -419,7 +419,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
truth state&nbsp;<a href=inform:/doc163.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#A1361><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -436,7 +436,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
text&nbsp;<a href=#A1362><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -453,7 +453,7 @@
<img border=0 alt="cross" src=inform:/doc_images/cross.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
snippet&nbsp;<a href=inform:/doc319.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#A1363><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -470,7 +470,7 @@
<img border=0 alt="cross" src=inform:/doc_images/cross.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
unicode character&nbsp;<a href=#A1364><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -487,7 +487,7 @@
<img border=0 alt="cross" src=inform:/doc_images/cross.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
action&nbsp;<a href=inform:/doc196.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#A1373><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -504,7 +504,7 @@
<img border=0 alt="cross" src=inform:/doc_images/cross.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
scene&nbsp;<a href=inform:/doc150.html><img border=0 src=inform:/doc_images/help.png></a> [1]&nbsp;<a href=#A838><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -521,7 +521,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
command parser error [25]&nbsp;<a href=#A1402><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -538,7 +538,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
dynasty&nbsp;<a href="source:story.ni#line3"><img border=0 src=inform:/doc_images/Reveal.png></a> [4]&nbsp;<a href=#A1404><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -555,7 +555,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
use option&nbsp;<a href=#A1365><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -572,7 +572,7 @@
<img border=0 alt="cross" src=inform:/doc_images/cross.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
response&nbsp;<a href=#A1366><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -589,7 +589,7 @@
<img border=0 alt="cross" src=inform:/doc_images/cross.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
verb&nbsp;<a href=inform:/doc222.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#A1367><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -606,7 +606,7 @@
<img border=0 alt="cross" src=inform:/doc_images/cross.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
table name&nbsp;<a href=inform:/doc260.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#A1368><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -623,7 +623,7 @@
<img border=0 alt="cross" src=inform:/doc_images/cross.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey">equation name&nbsp;<a href=#A1369><img border=0 src=inform:/doc_images/Below.png></a></span>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -640,7 +640,7 @@
<img border=0 alt="cross" src=inform:/doc_images/greycross.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
rulebook outcome&nbsp;<a href=#A1370><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -657,7 +657,7 @@
<img border=0 alt="cross" src=inform:/doc_images/cross.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey">external file&nbsp;<a href=inform:/doc384.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#A1371><img border=0 src=inform:/doc_images/Below.png></a></span>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -674,7 +674,7 @@
<img border=0 alt="tick" src=inform:/doc_images/greytick.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
action name&nbsp;<a href=inform:/doc98.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#A1374><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -691,7 +691,7 @@
<img border=0 alt="cross" src=inform:/doc_images/cross.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
figure name&nbsp;<a href=inform:/doc376.html><img border=0 src=inform:/doc_images/help.png></a> [1]&nbsp;<a href=#A1376><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -708,7 +708,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey">sound name&nbsp;<a href=inform:/doc379.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#A1377><img border=0 src=inform:/doc_images/Below.png></a></span>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -725,12 +725,12 @@
<img border=0 alt="tick" src=inform:/doc_images/greytick.png>
</td>
</tr>
<tr bgcolor="#888">
<tr class="tintedrow">
<td height="1" colspan="5" cellpadding="0">
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
natural language [6]&nbsp;<a href=#A1380><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -747,7 +747,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
grammatical tense&nbsp;<a href='inform://Extensions/Extensions/Graham%20Nelson/English%20Language.html' title="English Language by Graham Nelson" style="text-decoration: none"><img border=0 src=inform:/doc_images/Revealext.png></a> [5]&nbsp;<a href=#A1382><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -764,7 +764,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
narrative viewpoint&nbsp;<a href='inform://Extensions/Extensions/Graham%20Nelson/English%20Language.html' title="English Language by Graham Nelson" style="text-decoration: none"><img border=0 src=inform:/doc_images/Revealext.png></a> [6]&nbsp;<a href=#A1383><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -781,7 +781,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
grammatical case&nbsp;<a href='inform://Extensions/Extensions/Graham%20Nelson/English%20Language.html' title="English Language by Graham Nelson" style="text-decoration: none"><img border=0 src=inform:/doc_images/Revealext.png></a> [2]&nbsp;<a href=#A1384><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -798,7 +798,7 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
grammatical gender&nbsp;<a href='inform://Extensions/Extensions/Graham%20Nelson/English%20Language.html' title="English Language by Graham Nelson" style="text-decoration: none"><img border=0 src=inform:/doc_images/Revealext.png></a> [3]&nbsp;<a href=#A1385><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -815,12 +815,12 @@
<img border=0 alt="tick" src=inform:/doc_images/tick.png>
</td>
</tr>
<tr bgcolor="#888">
<tr class="tintedrow">
<td height="1" colspan="5" cellpadding="0">
</td>
</tr>
<tr bgcolor="#e0e0e0">
<tr class="headingrow">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<b>making new kinds from old</b>&nbsp;
</td>
@ -837,12 +837,12 @@
<i></i>&nbsp;
</td>
</tr>
<tr bgcolor="#888">
<tr class="tintedrow">
<td height="1" colspan="5" cellpadding="0">
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
list of K&nbsp;<a href=inform:/doc352.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#A1425><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -850,7 +850,7 @@
{ }
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
phrase K -> L&nbsp;<a href=#A2177><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -858,7 +858,7 @@
<i>always the default value of L</i>
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey"></span>relation<span class="indexgrey"> of K</span>&nbsp;<a href=#A2182><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -866,7 +866,7 @@
<i>a relation never holding</i>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey">K based</span> rule<span class="indexgrey"> producing L</span>&nbsp;<a href=inform:/doc327.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#A2185><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -874,7 +874,7 @@
the little-used do nothing rule
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey">K based</span> rulebook<span class="indexgrey"> producing L</span>&nbsp;<a href=inform:/doc327.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#A2188><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -882,7 +882,7 @@
the action-processing rules
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey"></span>activity<span class="indexgrey"> on K</span>&nbsp;<a href=inform:/doc287.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#A2191><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -890,7 +890,7 @@
printing the name
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
description of K&nbsp;<a href=inform:/doc364.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href=#A2197><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -898,7 +898,7 @@
<i>matching nothing</i>
</td>
</tr>
<tr>
<tr class="stripeone">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey">K valued</span> property<span class="indexgrey"></span>&nbsp;<a href=#A2199><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -906,7 +906,7 @@
--
</td>
</tr>
<tr bgcolor="#f0f0ff">
<tr class="stripetwo">
<td style="white-space:nowrap;" align="left" valign="top" height="20">
<span class="indexgrey">K valued</span> table<span class="indexgrey"></span> column<span class="indexgrey"></span>&nbsp;<a href=#A2201><img border=0 src=inform:/doc_images/Below.png></a>&nbsp;&nbsp;&nbsp;&nbsp;
</td>
@ -914,7 +914,7 @@
--
</td>
</tr>
<tr bgcolor="#888">
<tr class="tintedrow">
<td height="1" colspan="5" cellpadding="0">
</td>
@ -1052,16 +1052,16 @@ and southwest, for instance; down and up.<br>
</p>
<p class="tightin2"><a href="#" onclick="showExtra('extra0', 'plus0'); return false;"><img border=0 id="plus0" src=inform:/doc_images/extra.png></a>&nbsp;<span class="indexgrey">12 directions</span></p>
<div id="extra0" style="display: none;">
<p class="in3"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in3"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1077,13 +1077,13 @@ and southwest, for instance; down and up.<br>
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -1143,16 +1143,16 @@ Like a scene in a play: a period of time which is usually tied to events in the
<p class="tightin1"><i>Matches:</i> value, sayable value, understandable value, enumerated value<br>
<p class="tightin1"><a href="#" onclick="showExtra('extra1', 'plus1'); return false;"><img border=0 id="plus1" src=inform:/doc_images/extra.png></a>&nbsp;<span class="indexgrey">25 command parser errors</span></p>
<div id="extra1" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1168,13 +1168,13 @@ Like a scene in a play: a period of time which is usually tied to events in the
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>

View file

@ -12,16 +12,16 @@
<p class="tightin2"><span style="white-space:nowrap";><a href="javascript:pasteCode('Use ineffectual.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;ineffectual</span><span style="white-space:nowrap";><a href="javascript:pasteCode('Use American dialect.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;American dialect</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use serial comma.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;serial comma</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use memory economy.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;memory economy</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use engineering notation.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;engineering notation</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use unabbreviated object names.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;unabbreviated object names</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use predictable randomisation.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;predictable randomisation</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use fast route-finding.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;fast route-finding</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use slow route-finding.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;slow route-finding</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use numbered rules.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;numbered rules</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use telemetry recordings.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;telemetry recordings</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use no deprecated features.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;no deprecated features</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use gn testing version.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;gn testing version</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use command line echoing.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;command line echoing</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use full-length room descriptions.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;full-length room descriptions</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use abbreviated room descriptions.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;abbreviated room descriptions</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use scoring.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;scoring</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use no scoring.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;no scoring</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use manual pronouns.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;manual pronouns</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use undo prevention.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;undo prevention</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use VERBOSE room descriptions.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;VERBOSE room descriptions</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use BRIEF room descriptions.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;BRIEF room descriptions</span>, <span style="white-space:nowrap";><a href="javascript:pasteCode('Use SUPERBRIEF room descriptions.')"><img border=0 src=inform:/doc_images/paste.png></a>&nbsp;SUPERBRIEF room descriptions</span>, </p>
<p><a href="#" onclick="showExtra('extra3', 'plus3'); return false;"><img border=0 id="plus3" src=inform:/doc_images/extra.png></a>&nbsp;See some technicalities for Inform maintainers only</p>
<div id="extra3" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -118,13 +118,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>

View file

@ -7,16 +7,16 @@
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -102,10 +102,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Spirit Room">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Spirit Room">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_18 style="text-decoration: none"><span style='color:#000000'>SR</span></a></span>
<span class="indexblack"><a href=#wo_18 style="text-decoration: none"><span class="indexblack">SR</span></a></span>
</td>
</tr>
</table>
@ -262,10 +262,10 @@
</td>
<td>
<table border="2" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Fish Room">
<table border="2" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Fish Room">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_17 style="text-decoration: none"><span style='color:#000000'><b>FR</b></span></a></span>
<span class="indexblack"><a href=#wo_17 style="text-decoration: none"><span class="indexblack"><b>FR</b></span></a></span>
</td>
</tr>
</table>
@ -317,10 +317,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="After Powder Magazine">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="After Powder Magazine">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_19 style="text-decoration: none"><span style='color:#000000'>AP</span></a></span>
<span class="indexblack"><a href=#wo_19 style="text-decoration: none"><span class="indexblack">AP</span></a></span>
</td>
</tr>
</table>
@ -477,10 +477,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Bread Room">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Bread Room">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_20 style="text-decoration: none"><span style='color:#000000'>BR</span></a></span>
<span class="indexblack"><a href=#wo_20 style="text-decoration: none"><span class="indexblack">BR</span></a></span>
</td>
</tr>
</table>
@ -548,7 +548,7 @@
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
@ -573,13 +573,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -639,10 +639,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Fish Room">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Fish Room">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>FR</span>
<span class="indexblack">FR</span>
</td>
</tr>
</table>
@ -698,16 +698,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra0', 'plus0'); return false;"><img border=0 id="plus0" src=inform:/doc_images/extra.png></a>&nbsp;<b>Fish Room</b> - <i>room where play begins</i>&nbsp;<a href=inform:/doc135.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href="source:story.ni#line7"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra0" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -729,29 +729,29 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
</p>
</div>
<a href="#" onclick="showExtra('extra1', 'plus1'); return false;"><img border=0 id="plus1" src=inform:/doc_images/extra.png></a>&nbsp;yourself - <i>person</i><div id="extra1" style="display: none;">
<p class="in3"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in3"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -772,13 +772,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -837,10 +837,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Spirit Room">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Spirit Room">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>SR</span>
<span class="indexblack">SR</span>
</td>
</tr>
</table>
@ -896,16 +896,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra2', 'plus2'); return false;"><img border=0 id="plus2" src=inform:/doc_images/extra.png></a>&nbsp;<b>Spirit Room</b>&nbsp;<a href="source:story.ni#line9"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra2" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -926,13 +926,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -991,10 +991,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="After Powder Magazine">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="After Powder Magazine">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>AP</span>
<span class="indexblack">AP</span>
</td>
</tr>
</table>
@ -1050,16 +1050,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra3', 'plus3'); return false;"><img border=0 id="plus3" src=inform:/doc_images/extra.png></a>&nbsp;<b>After Powder Magazine</b>&nbsp;<a href="source:story.ni#line10"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra3" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1081,13 +1081,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -1146,10 +1146,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Bread Room">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Bread Room">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>BR</span>
<span class="indexblack">BR</span>
</td>
</tr>
</table>
@ -1205,16 +1205,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra4', 'plus4'); return false;"><img border=0 id="plus4" src=inform:/doc_images/extra.png></a>&nbsp;<b>Bread Room</b>&nbsp;<a href="source:story.ni#line11"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra4" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1235,13 +1235,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>

View file

@ -7,16 +7,16 @@
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -227,10 +227,10 @@
</td>
<td>
<table border="2" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Blockhouse A">
<table border="2" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Blockhouse A">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_13 style="text-decoration: none"><span style='color:#000000'><b>BA</b></span></a></span>
<span class="indexblack"><a href=#wo_13 style="text-decoration: none"><span class="indexblack"><b>BA</b></span></a></span>
</td>
</tr>
</table>
@ -282,10 +282,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Blockhouse D">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Blockhouse D">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_16 style="text-decoration: none"><span style='color:#000000'>BD</span></a></span>
<span class="indexblack"><a href=#wo_16 style="text-decoration: none"><span class="indexblack">BD</span></a></span>
</td>
</tr>
</table>
@ -384,10 +384,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Blockhouse E">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Blockhouse E">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_17 style="text-decoration: none"><span style='color:#000000'>BE</span></a></span>
<span class="indexblack"><a href=#wo_17 style="text-decoration: none"><span class="indexblack">BE</span></a></span>
</td>
</tr>
</table>
@ -533,10 +533,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Blockhouse H">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Blockhouse H">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_20 style="text-decoration: none"><span style='color:#000000'>BH</span></a></span>
<span class="indexblack"><a href=#wo_20 style="text-decoration: none"><span class="indexblack">BH</span></a></span>
</td>
</tr>
</table>
@ -802,10 +802,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Blockhouse B">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Blockhouse B">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_14 style="text-decoration: none"><span style='color:#000000'>BB</span></a></span>
<span class="indexblack"><a href=#wo_14 style="text-decoration: none"><span class="indexblack">BB</span></a></span>
</td>
</tr>
</table>
@ -951,10 +951,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Blockhouse C">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Blockhouse C">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_15 style="text-decoration: none"><span style='color:#000000'>BC</span></a></span>
<span class="indexblack"><a href=#wo_15 style="text-decoration: none"><span class="indexblack">BC</span></a></span>
</td>
</tr>
</table>
@ -1053,10 +1053,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Blockhouse F">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Blockhouse F">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_18 style="text-decoration: none"><span style='color:#000000'>BF</span></a></span>
<span class="indexblack"><a href=#wo_18 style="text-decoration: none"><span class="indexblack">BF</span></a></span>
</td>
</tr>
</table>
@ -1108,10 +1108,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Blockhouse G">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Blockhouse G">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_19 style="text-decoration: none"><span style='color:#000000'>BG</span></a></span>
<span class="indexblack"><a href=#wo_19 style="text-decoration: none"><span class="indexblack">BG</span></a></span>
</td>
</tr>
</table>
@ -1304,7 +1304,7 @@
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
@ -1329,13 +1329,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -1394,10 +1394,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Blockhouse A">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Blockhouse A">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>BA</span>
<span class="indexblack">BA</span>
</td>
</tr>
</table>
@ -1453,16 +1453,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra0', 'plus0'); return false;"><img border=0 id="plus0" src=inform:/doc_images/extra.png></a>&nbsp;<b>Blockhouse A</b> - <i>room where play begins</i>&nbsp;<a href=inform:/doc135.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href="source:story.ni#line3"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra0" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1484,29 +1484,29 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
</p>
</div>
<a href="#" onclick="showExtra('extra1', 'plus1'); return false;"><img border=0 id="plus1" src=inform:/doc_images/extra.png></a>&nbsp;yourself - <i>person</i><div id="extra1" style="display: none;">
<p class="in3"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in3"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1527,13 +1527,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -1592,10 +1592,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Blockhouse B">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Blockhouse B">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>BB</span>
<span class="indexblack">BB</span>
</td>
</tr>
</table>
@ -1651,16 +1651,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra2', 'plus2'); return false;"><img border=0 id="plus2" src=inform:/doc_images/extra.png></a>&nbsp;<b>Blockhouse B</b>&nbsp;<a href="source:story.ni#line3"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra2" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1682,13 +1682,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -1747,10 +1747,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Blockhouse C">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Blockhouse C">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>BC</span>
<span class="indexblack">BC</span>
</td>
</tr>
</table>
@ -1806,16 +1806,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra3', 'plus3'); return false;"><img border=0 id="plus3" src=inform:/doc_images/extra.png></a>&nbsp;<b>Blockhouse C</b>&nbsp;<a href="source:story.ni#line5"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra3" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1837,13 +1837,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -1902,10 +1902,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Blockhouse D">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Blockhouse D">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>BD</span>
<span class="indexblack">BD</span>
</td>
</tr>
</table>
@ -1961,16 +1961,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra4', 'plus4'); return false;"><img border=0 id="plus4" src=inform:/doc_images/extra.png></a>&nbsp;<b>Blockhouse D</b>&nbsp;<a href="source:story.ni#line5"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra4" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1992,13 +1992,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -2057,10 +2057,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Blockhouse E">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Blockhouse E">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>BE</span>
<span class="indexblack">BE</span>
</td>
</tr>
</table>
@ -2116,16 +2116,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra5', 'plus5'); return false;"><img border=0 id="plus5" src=inform:/doc_images/extra.png></a>&nbsp;<b>Blockhouse E</b>&nbsp;<a href="source:story.ni#line7"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra5" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -2147,13 +2147,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -2212,10 +2212,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Blockhouse F">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Blockhouse F">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>BF</span>
<span class="indexblack">BF</span>
</td>
</tr>
</table>
@ -2271,16 +2271,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra6', 'plus6'); return false;"><img border=0 id="plus6" src=inform:/doc_images/extra.png></a>&nbsp;<b>Blockhouse F</b>&nbsp;<a href="source:story.ni#line7"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra6" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -2302,13 +2302,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -2367,10 +2367,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Blockhouse G">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Blockhouse G">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>BG</span>
<span class="indexblack">BG</span>
</td>
</tr>
</table>
@ -2426,16 +2426,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra7', 'plus7'); return false;"><img border=0 id="plus7" src=inform:/doc_images/extra.png></a>&nbsp;<b>Blockhouse G</b>&nbsp;<a href="source:story.ni#line9"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra7" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -2457,13 +2457,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -2522,10 +2522,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Blockhouse H">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Blockhouse H">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>BH</span>
<span class="indexblack">BH</span>
</td>
</tr>
</table>
@ -2581,16 +2581,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra8', 'plus8'); return false;"><img border=0 id="plus8" src=inform:/doc_images/extra.png></a>&nbsp;<b>Blockhouse H</b>&nbsp;<a href="source:story.ni#line9"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra8" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -2612,13 +2612,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>

View file

@ -7,16 +7,16 @@
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -162,10 +162,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Beth">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Beth">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_14 style="text-decoration: none"><span style='color:#000000'>Bt</span></a></span>
<span class="indexblack"><a href=#wo_14 style="text-decoration: none"><span class="indexblack">Bt</span></a></span>
</td>
</tr>
</table>
@ -348,10 +348,10 @@
</td>
<td>
<table border="2" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Aleph">
<table border="2" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Aleph">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_13 style="text-decoration: none"><span style='color:#000000'><b>Al</b></span></a></span>
<span class="indexblack"><a href=#wo_13 style="text-decoration: none"><span class="indexblack"><b>Al</b></span></a></span>
</td>
</tr>
</table>
@ -450,10 +450,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Gimel">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Gimel">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_15 style="text-decoration: none"><span style='color:#000000'>Gm</span></a></span>
<span class="indexblack"><a href=#wo_15 style="text-decoration: none"><span class="indexblack">Gm</span></a></span>
</td>
</tr>
</table>
@ -636,10 +636,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Daleth">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Daleth">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_16 style="text-decoration: none"><span style='color:#000000'>Dl</span></a></span>
<span class="indexblack"><a href=#wo_16 style="text-decoration: none"><span class="indexblack">Dl</span></a></span>
</td>
</tr>
</table>
@ -767,7 +767,7 @@
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
@ -792,13 +792,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -857,10 +857,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Aleph">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Aleph">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Al</span>
<span class="indexblack">Al</span>
</td>
</tr>
</table>
@ -916,16 +916,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra0', 'plus0'); return false;"><img border=0 id="plus0" src=inform:/doc_images/extra.png></a>&nbsp;<b>Aleph</b> - <i>room where play begins</i>&nbsp;<a href=inform:/doc135.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href="source:story.ni#line3"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra0" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -948,29 +948,29 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
</p>
</div>
<a href="#" onclick="showExtra('extra1', 'plus1'); return false;"><img border=0 id="plus1" src=inform:/doc_images/extra.png></a>&nbsp;yourself - <i>person</i><div id="extra1" style="display: none;">
<p class="in3"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in3"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -991,13 +991,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -1056,10 +1056,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Beth">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Beth">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Bt</span>
<span class="indexblack">Bt</span>
</td>
</tr>
</table>
@ -1115,16 +1115,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra2', 'plus2'); return false;"><img border=0 id="plus2" src=inform:/doc_images/extra.png></a>&nbsp;<b>Beth</b>&nbsp;<a href="source:story.ni#line3"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra2" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1147,13 +1147,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -1212,10 +1212,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Gimel">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Gimel">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Gm</span>
<span class="indexblack">Gm</span>
</td>
</tr>
</table>
@ -1271,16 +1271,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra3', 'plus3'); return false;"><img border=0 id="plus3" src=inform:/doc_images/extra.png></a>&nbsp;<b>Gimel</b>&nbsp;<a href="source:story.ni#line3"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra3" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1303,13 +1303,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -1368,10 +1368,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Daleth">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Daleth">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Dl</span>
<span class="indexblack">Dl</span>
</td>
</tr>
</table>
@ -1427,16 +1427,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra4', 'plus4'); return false;"><img border=0 id="plus4" src=inform:/doc_images/extra.png></a>&nbsp;<b>Daleth</b>&nbsp;<a href="source:story.ni#line4"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra4" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1459,13 +1459,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>

File diff suppressed because it is too large Load diff

View file

@ -7,16 +7,16 @@
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -368,10 +368,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Hillhead">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Hillhead">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_15 style="text-decoration: none"><span style='color:#000000'>Hl</span></a></span>
<span class="indexblack"><a href=#wo_15 style="text-decoration: none"><span class="indexblack">Hl</span></a></span>
</td>
</tr>
</table>
@ -423,10 +423,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Kelvinbridge">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Kelvinbridge">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_16 style="text-decoration: none"><span style='color:#000000'>Kl</span></a></span>
<span class="indexblack"><a href=#wo_16 style="text-decoration: none"><span class="indexblack">Kl</span></a></span>
</td>
</tr>
</table>
@ -786,10 +786,10 @@
</td>
<td>
<table border="2" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Partick">
<table border="2" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Partick">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_13 style="text-decoration: none"><span style='color:#000000'><b>Pr</b></span></a></span>
<span class="indexblack"><a href=#wo_13 style="text-decoration: none"><span class="indexblack"><b>Pr</b></span></a></span>
</td>
</tr>
</table>
@ -935,10 +935,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Kelvinhall">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Kelvinhall">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_14 style="text-decoration: none"><span style='color:#000000'>Kl</span></a></span>
<span class="indexblack"><a href=#wo_14 style="text-decoration: none"><span class="indexblack">Kl</span></a></span>
</td>
</tr>
</table>
@ -1084,10 +1084,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="St Georges Cross">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="St Georges Cross">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_17 style="text-decoration: none"><span style='color:#000000'>SG</span></a></span>
<span class="indexblack"><a href=#wo_17 style="text-decoration: none"><span class="indexblack">SG</span></a></span>
</td>
</tr>
</table>
@ -1139,10 +1139,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Cowcaddens">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Cowcaddens">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_18 style="text-decoration: none"><span style='color:#000000'>Cw</span></a></span>
<span class="indexblack"><a href=#wo_18 style="text-decoration: none"><span class="indexblack">Cw</span></a></span>
</td>
</tr>
</table>
@ -1737,10 +1737,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Buchanan Street">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Buchanan Street">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_19 style="text-decoration: none"><span style='color:#000000'>BS</span></a></span>
<span class="indexblack"><a href=#wo_19 style="text-decoration: none"><span class="indexblack">BS</span></a></span>
</td>
</tr>
</table>
@ -2335,10 +2335,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="St Enoch">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="St Enoch">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_20 style="text-decoration: none"><span style='color:#000000'>SE</span></a></span>
<span class="indexblack"><a href=#wo_20 style="text-decoration: none"><span class="indexblack">SE</span></a></span>
</td>
</tr>
</table>
@ -2604,10 +2604,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Govan">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Govan">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_27 style="text-decoration: none"><span style='color:#000000'>Gv</span></a></span>
<span class="indexblack"><a href=#wo_27 style="text-decoration: none"><span class="indexblack">Gv</span></a></span>
</td>
</tr>
</table>
@ -2941,10 +2941,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Bridge Street">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Bridge Street">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_21 style="text-decoration: none"><span style='color:#000000'>BS</span></a></span>
<span class="indexblack"><a href=#wo_21 style="text-decoration: none"><span class="indexblack">BS</span></a></span>
</td>
</tr>
</table>
@ -3210,10 +3210,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Ibrox">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Ibrox">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_26 style="text-decoration: none"><span style='color:#000000'>Ib</span></a></span>
<span class="indexblack"><a href=#wo_26 style="text-decoration: none"><span class="indexblack">Ib</span></a></span>
</td>
</tr>
</table>
@ -3265,10 +3265,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Cessnock">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Cessnock">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_25 style="text-decoration: none"><span style='color:#000000'>Cs</span></a></span>
<span class="indexblack"><a href=#wo_25 style="text-decoration: none"><span class="indexblack">Cs</span></a></span>
</td>
</tr>
</table>
@ -3320,10 +3320,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Kinning Park">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Kinning Park">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_24 style="text-decoration: none"><span style='color:#000000'>KP</span></a></span>
<span class="indexblack"><a href=#wo_24 style="text-decoration: none"><span class="indexblack">KP</span></a></span>
</td>
</tr>
</table>
@ -3375,10 +3375,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Shields Road">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Shields Road">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_23 style="text-decoration: none"><span style='color:#000000'>SR</span></a></span>
<span class="indexblack"><a href=#wo_23 style="text-decoration: none"><span class="indexblack">SR</span></a></span>
</td>
</tr>
</table>
@ -3524,10 +3524,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="West Street">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="West Street">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_22 style="text-decoration: none"><span style='color:#000000'>WS</span></a></span>
<span class="indexblack"><a href=#wo_22 style="text-decoration: none"><span class="indexblack">WS</span></a></span>
</td>
</tr>
</table>
@ -3720,7 +3720,7 @@
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
@ -3745,13 +3745,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -3810,10 +3810,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Partick">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Partick">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Pr</span>
<span class="indexblack">Pr</span>
</td>
</tr>
</table>
@ -3869,16 +3869,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra0', 'plus0'); return false;"><img border=0 id="plus0" src=inform:/doc_images/extra.png></a>&nbsp;<b>Partick</b> - <i>room where play begins</i>&nbsp;<a href=inform:/doc135.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href="source:story.ni#line3"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra0" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -3900,29 +3900,29 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
</p>
</div>
<a href="#" onclick="showExtra('extra1', 'plus1'); return false;"><img border=0 id="plus1" src=inform:/doc_images/extra.png></a>&nbsp;yourself - <i>person</i><div id="extra1" style="display: none;">
<p class="in3"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in3"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -3943,13 +3943,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -4008,10 +4008,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Kelvinhall">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Kelvinhall">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Kl</span>
<span class="indexblack">Kl</span>
</td>
</tr>
</table>
@ -4067,16 +4067,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra2', 'plus2'); return false;"><img border=0 id="plus2" src=inform:/doc_images/extra.png></a>&nbsp;<b>Kelvinhall</b>&nbsp;<a href="source:story.ni#line3"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra2" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -4098,13 +4098,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -4163,10 +4163,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Hillhead">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Hillhead">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Hl</span>
<span class="indexblack">Hl</span>
</td>
</tr>
</table>
@ -4222,16 +4222,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra3', 'plus3'); return false;"><img border=0 id="plus3" src=inform:/doc_images/extra.png></a>&nbsp;<b>Hillhead</b>&nbsp;<a href="source:story.ni#line4"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra3" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -4253,13 +4253,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -4318,10 +4318,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Kelvinbridge">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Kelvinbridge">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Kl</span>
<span class="indexblack">Kl</span>
</td>
</tr>
</table>
@ -4377,16 +4377,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra4', 'plus4'); return false;"><img border=0 id="plus4" src=inform:/doc_images/extra.png></a>&nbsp;<b>Kelvinbridge</b>&nbsp;<a href="source:story.ni#line5"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra4" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -4408,13 +4408,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -4473,10 +4473,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="St Georges Cross">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="St Georges Cross">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>SG</span>
<span class="indexblack">SG</span>
</td>
</tr>
</table>
@ -4532,16 +4532,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra5', 'plus5'); return false;"><img border=0 id="plus5" src=inform:/doc_images/extra.png></a>&nbsp;<b>St Georges Cross</b>&nbsp;<a href="source:story.ni#line6"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra5" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -4563,13 +4563,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -4628,10 +4628,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Cowcaddens">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Cowcaddens">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Cw</span>
<span class="indexblack">Cw</span>
</td>
</tr>
</table>
@ -4687,16 +4687,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra6', 'plus6'); return false;"><img border=0 id="plus6" src=inform:/doc_images/extra.png></a>&nbsp;<b>Cowcaddens</b>&nbsp;<a href="source:story.ni#line7"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra6" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -4718,13 +4718,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -4783,10 +4783,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Buchanan Street">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Buchanan Street">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>BS</span>
<span class="indexblack">BS</span>
</td>
</tr>
</table>
@ -4842,16 +4842,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra7', 'plus7'); return false;"><img border=0 id="plus7" src=inform:/doc_images/extra.png></a>&nbsp;<b>Buchanan Street</b>&nbsp;<a href="source:story.ni#line8"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra7" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -4873,13 +4873,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -4938,10 +4938,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="St Enoch">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="St Enoch">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>SE</span>
<span class="indexblack">SE</span>
</td>
</tr>
</table>
@ -4997,16 +4997,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra8', 'plus8'); return false;"><img border=0 id="plus8" src=inform:/doc_images/extra.png></a>&nbsp;<b>St Enoch</b>&nbsp;<a href="source:story.ni#line9"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra8" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -5028,13 +5028,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -5093,10 +5093,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Bridge Street">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Bridge Street">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>BS</span>
<span class="indexblack">BS</span>
</td>
</tr>
</table>
@ -5152,16 +5152,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra9', 'plus9'); return false;"><img border=0 id="plus9" src=inform:/doc_images/extra.png></a>&nbsp;<b>Bridge Street</b>&nbsp;<a href="source:story.ni#line10"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra9" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -5183,13 +5183,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -5248,10 +5248,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="West Street">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="West Street">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>WS</span>
<span class="indexblack">WS</span>
</td>
</tr>
</table>
@ -5307,16 +5307,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra10', 'plus10'); return false;"><img border=0 id="plus10" src=inform:/doc_images/extra.png></a>&nbsp;<b>West Street</b>&nbsp;<a href="source:story.ni#line11"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra10" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -5338,13 +5338,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -5403,10 +5403,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Shields Road">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Shields Road">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>SR</span>
<span class="indexblack">SR</span>
</td>
</tr>
</table>
@ -5462,16 +5462,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra11', 'plus11'); return false;"><img border=0 id="plus11" src=inform:/doc_images/extra.png></a>&nbsp;<b>Shields Road</b>&nbsp;<a href="source:story.ni#line12"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra11" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -5493,13 +5493,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -5558,10 +5558,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Kinning Park">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Kinning Park">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>KP</span>
<span class="indexblack">KP</span>
</td>
</tr>
</table>
@ -5617,16 +5617,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra12', 'plus12'); return false;"><img border=0 id="plus12" src=inform:/doc_images/extra.png></a>&nbsp;<b>Kinning Park</b>&nbsp;<a href="source:story.ni#line13"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra12" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -5648,13 +5648,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -5713,10 +5713,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Cessnock">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Cessnock">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Cs</span>
<span class="indexblack">Cs</span>
</td>
</tr>
</table>
@ -5772,16 +5772,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra13', 'plus13'); return false;"><img border=0 id="plus13" src=inform:/doc_images/extra.png></a>&nbsp;<b>Cessnock</b>&nbsp;<a href="source:story.ni#line14"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra13" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -5803,13 +5803,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -5868,10 +5868,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Ibrox">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Ibrox">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Ib</span>
<span class="indexblack">Ib</span>
</td>
</tr>
</table>
@ -5927,16 +5927,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra14', 'plus14'); return false;"><img border=0 id="plus14" src=inform:/doc_images/extra.png></a>&nbsp;<b>Ibrox</b>&nbsp;<a href="source:story.ni#line15"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra14" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -5958,13 +5958,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -6023,10 +6023,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Govan">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Govan">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Gv</span>
<span class="indexblack">Gv</span>
</td>
</tr>
</table>
@ -6082,16 +6082,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra15', 'plus15'); return false;"><img border=0 id="plus15" src=inform:/doc_images/extra.png></a>&nbsp;<b>Govan</b>&nbsp;<a href="source:story.ni#line16"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra15" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -6113,13 +6113,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>

View file

@ -7,16 +7,16 @@
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -115,10 +115,10 @@
</td>
<td>
<table border="2" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Alpha">
<table border="2" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Alpha">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_13 style="text-decoration: none"><span style='color:#000000'><b>Al</b></span></a></span>
<span class="indexblack"><a href=#wo_13 style="text-decoration: none"><span class="indexblack"><b>Al</b></span></a></span>
</td>
</tr>
</table>
@ -217,10 +217,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Beta">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Beta">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_14 style="text-decoration: none"><span style='color:#000000'>Bt</span></a></span>
<span class="indexblack"><a href=#wo_14 style="text-decoration: none"><span class="indexblack">Bt</span></a></span>
</td>
</tr>
</table>
@ -403,10 +403,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Epsilon">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Epsilon">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_17 style="text-decoration: none"><span style='color:#000000'>Ep</span></a></span>
<span class="indexblack"><a href=#wo_17 style="text-decoration: none"><span class="indexblack">Ep</span></a></span>
</td>
</tr>
</table>
@ -589,10 +589,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Gamma">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Gamma">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_15 style="text-decoration: none"><span style='color:#000000'>Gm</span></a></span>
<span class="indexblack"><a href=#wo_15 style="text-decoration: none"><span class="indexblack">Gm</span></a></span>
</td>
</tr>
</table>
@ -691,10 +691,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Delta">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Delta">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_16 style="text-decoration: none"><span style='color:#000000'>Dl</span></a></span>
<span class="indexblack"><a href=#wo_16 style="text-decoration: none"><span class="indexblack">Dl</span></a></span>
</td>
</tr>
</table>
@ -775,7 +775,7 @@
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
@ -800,13 +800,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -865,10 +865,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Alpha">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Alpha">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Al</span>
<span class="indexblack">Al</span>
</td>
</tr>
</table>
@ -924,16 +924,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra0', 'plus0'); return false;"><img border=0 id="plus0" src=inform:/doc_images/extra.png></a>&nbsp;<b>Alpha</b> - <i>room where play begins</i>&nbsp;<a href=inform:/doc135.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href="source:story.ni#line3"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra0" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -955,29 +955,29 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
</p>
</div>
<a href="#" onclick="showExtra('extra1', 'plus1'); return false;"><img border=0 id="plus1" src=inform:/doc_images/extra.png></a>&nbsp;yourself - <i>person</i><div id="extra1" style="display: none;">
<p class="in3"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in3"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -998,13 +998,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -1063,10 +1063,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Beta">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Beta">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Bt</span>
<span class="indexblack">Bt</span>
</td>
</tr>
</table>
@ -1122,16 +1122,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra2', 'plus2'); return false;"><img border=0 id="plus2" src=inform:/doc_images/extra.png></a>&nbsp;<b>Beta</b>&nbsp;<a href="source:story.ni#line3"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra2" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1153,13 +1153,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -1218,10 +1218,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Gamma">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Gamma">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Gm</span>
<span class="indexblack">Gm</span>
</td>
</tr>
</table>
@ -1277,16 +1277,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra3', 'plus3'); return false;"><img border=0 id="plus3" src=inform:/doc_images/extra.png></a>&nbsp;<b>Gamma</b>&nbsp;<a href="source:story.ni#line3"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra3" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1308,13 +1308,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -1373,10 +1373,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Delta">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Delta">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Dl</span>
<span class="indexblack">Dl</span>
</td>
</tr>
</table>
@ -1432,16 +1432,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra4', 'plus4'); return false;"><img border=0 id="plus4" src=inform:/doc_images/extra.png></a>&nbsp;<b>Delta</b>&nbsp;<a href="source:story.ni#line3"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra4" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1464,13 +1464,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -1529,10 +1529,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Epsilon">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Epsilon">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Ep</span>
<span class="indexblack">Ep</span>
</td>
</tr>
</table>
@ -1588,16 +1588,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra5', 'plus5'); return false;"><img border=0 id="plus5" src=inform:/doc_images/extra.png></a>&nbsp;<b>Epsilon</b>&nbsp;<a href="source:story.ni#line4"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra5" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1618,13 +1618,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>

View file

@ -7,16 +7,16 @@
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -124,7 +124,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>2</i></center></span>
<center><i><span class="indexmaplevelnumbers">2</span></i></center>
</td>
</tr>
@ -248,10 +248,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Astrological Observatory">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Astrological Observatory">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_19 style="text-decoration: none"><span style='color:#000000'>AO</span></a></span>
<span class="indexblack"><a href=#wo_19 style="text-decoration: none"><span class="indexblack">AO</span></a></span>
</td>
</tr>
</table>
@ -286,7 +286,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>2</i></center></span>
<center><i><span class="indexmaplevelnumbers">2</span></i></center>
</td>
</tr>
@ -371,7 +371,7 @@
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
@ -488,7 +488,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>3</i></center></span>
<center><i><span class="indexmaplevelnumbers">3</span></i></center>
</td>
</tr>
@ -565,10 +565,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Isle">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Isle">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_16 style="text-decoration: none"><span style='color:#000000'>Is</span></a></span>
<span class="indexblack"><a href=#wo_16 style="text-decoration: none"><span class="indexblack">Is</span></a></span>
</td>
</tr>
</table>
@ -650,7 +650,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>3</i></center></span>
<center><i><span class="indexmaplevelnumbers">3</span></i></center>
</td>
</tr>
@ -799,7 +799,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>2</i></center></span>
<center><i><span class="indexmaplevelnumbers">2</span></i></center>
</td>
</tr>
@ -829,10 +829,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Deutsche Universitat Bucherei">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Deutsche Universitat Bucherei">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_14 style="text-decoration: none"><span style='color:#000000'>DU</span></a></span>
<span class="indexblack"><a href=#wo_14 style="text-decoration: none"><span class="indexblack">DU</span></a></span>
</td>
</tr>
</table>
@ -884,10 +884,10 @@
</td>
<td>
<table border="2" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Chateau Bibliotheque">
<table border="2" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Chateau Bibliotheque">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_13 style="text-decoration: none"><span style='color:#000000'><b>CB</b></span></a></span>
<span class="indexblack"><a href=#wo_13 style="text-decoration: none"><span class="indexblack"><b>CB</b></span></a></span>
</td>
</tr>
</table>
@ -939,10 +939,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Alphabet Soup">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Alphabet Soup">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_17 style="text-decoration: none"><span style='color:#000000'>AS</span></a></span>
<span class="indexblack"><a href=#wo_17 style="text-decoration: none"><span class="indexblack">AS</span></a></span>
</td>
</tr>
</table>
@ -977,7 +977,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>2</i></center></span>
<center><i><span class="indexmaplevelnumbers">2</span></i></center>
</td>
</tr>
@ -1126,7 +1126,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>1</i></center></span>
<center><i><span class="indexmaplevelnumbers">1</span></i></center>
</td>
</tr>
@ -1203,10 +1203,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Miscellany Manana">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Miscellany Manana">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_15 style="text-decoration: none"><span style='color:#000000'>MM</span></a></span>
<span class="indexblack"><a href=#wo_15 style="text-decoration: none"><span class="indexblack">MM</span></a></span>
</td>
</tr>
</table>
@ -1258,10 +1258,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Gaming Lounge">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Gaming Lounge">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_18 style="text-decoration: none"><span style='color:#000000'>GL</span></a></span>
<span class="indexblack"><a href=#wo_18 style="text-decoration: none"><span class="indexblack">GL</span></a></span>
</td>
</tr>
</table>
@ -1296,7 +1296,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>1</i></center></span>
<center><i><span class="indexmaplevelnumbers">1</span></i></center>
</td>
</tr>
@ -1381,7 +1381,7 @@
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
@ -1498,7 +1498,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>2</i></center></span>
<center><i><span class="indexmaplevelnumbers">2</span></i></center>
</td>
</tr>
@ -1622,10 +1622,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Danger Zone">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Danger Zone">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_20 style="text-decoration: none"><span style='color:#000000'>DZ</span></a></span>
<span class="indexblack"><a href=#wo_20 style="text-decoration: none"><span class="indexblack">DZ</span></a></span>
</td>
</tr>
</table>
@ -1660,7 +1660,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>2</i></center></span>
<center><i><span class="indexmaplevelnumbers">2</span></i></center>
</td>
</tr>
@ -1745,7 +1745,7 @@
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
@ -1770,13 +1770,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -1835,10 +1835,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Chateau Bibliotheque">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Chateau Bibliotheque">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>CB</span>
<span class="indexblack">CB</span>
</td>
</tr>
</table>
@ -1894,16 +1894,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra0', 'plus0'); return false;"><img border=0 id="plus0" src=inform:/doc_images/extra.png></a>&nbsp;<b>Chateau Bibliotheque</b> - <i>room where play begins</i>&nbsp;<a href=inform:/doc135.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href="source:story.ni#line3"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra0" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1927,29 +1927,29 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
</p>
</div>
<a href="#" onclick="showExtra('extra1', 'plus1'); return false;"><img border=0 id="plus1" src=inform:/doc_images/extra.png></a>&nbsp;yourself - <i>person</i><div id="extra1" style="display: none;">
<p class="in3"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in3"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -1970,13 +1970,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -2035,10 +2035,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Deutsche Universitat Bucherei">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Deutsche Universitat Bucherei">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>DU</span>
<span class="indexblack">DU</span>
</td>
</tr>
</table>
@ -2094,16 +2094,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra2', 'plus2'); return false;"><img border=0 id="plus2" src=inform:/doc_images/extra.png></a>&nbsp;<b>Deutsche Universitat Bucherei</b>&nbsp;<a href="source:story.ni#line5"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra2" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -2124,13 +2124,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -2189,10 +2189,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Miscellany Manana">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Miscellany Manana">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>MM</span>
<span class="indexblack">MM</span>
</td>
</tr>
</table>
@ -2248,16 +2248,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra3', 'plus3'); return false;"><img border=0 id="plus3" src=inform:/doc_images/extra.png></a>&nbsp;<b>Miscellany Manana</b>&nbsp;<a href="source:story.ni#line6"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra3" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -2278,13 +2278,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -2343,10 +2343,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Isle">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Isle">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Is</span>
<span class="indexblack">Is</span>
</td>
</tr>
</table>
@ -2402,16 +2402,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra4', 'plus4'); return false;"><img border=0 id="plus4" src=inform:/doc_images/extra.png></a>&nbsp;<b>Isle</b>&nbsp;<a href="source:story.ni#line7"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra4" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -2432,13 +2432,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -2497,10 +2497,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Alphabet Soup">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Alphabet Soup">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>AS</span>
<span class="indexblack">AS</span>
</td>
</tr>
</table>
@ -2556,16 +2556,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra5', 'plus5'); return false;"><img border=0 id="plus5" src=inform:/doc_images/extra.png></a>&nbsp;<b>Alphabet Soup</b>&nbsp;<a href="source:story.ni#line8"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra5" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -2589,13 +2589,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -2654,10 +2654,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Gaming Lounge">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Gaming Lounge">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>GL</span>
<span class="indexblack">GL</span>
</td>
</tr>
</table>
@ -2713,16 +2713,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra6', 'plus6'); return false;"><img border=0 id="plus6" src=inform:/doc_images/extra.png></a>&nbsp;<b>Gaming Lounge</b>&nbsp;<a href="source:story.ni#line9"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra6" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -2743,13 +2743,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -2808,10 +2808,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Astrological Observatory">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Astrological Observatory">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>AO</span>
<span class="indexblack">AO</span>
</td>
</tr>
</table>
@ -2867,16 +2867,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra7', 'plus7'); return false;"><img border=0 id="plus7" src=inform:/doc_images/extra.png></a>&nbsp;<b>Astrological Observatory</b>&nbsp;<a href="source:story.ni#line10"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra7" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -2897,13 +2897,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -2962,10 +2962,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Danger Zone">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Danger Zone">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>DZ</span>
<span class="indexblack">DZ</span>
</td>
</tr>
</table>
@ -3021,16 +3021,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra8', 'plus8'); return false;"><img border=0 id="plus8" src=inform:/doc_images/extra.png></a>&nbsp;<b>Danger Zone</b>&nbsp;<a href="source:story.ni#line11"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra8" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -3051,13 +3051,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>

View file

@ -7,16 +7,16 @@
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -137,7 +137,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>1</i></center></span>
<center><i><span class="indexmaplevelnumbers">1</span></i></center>
</td>
</tr>
@ -308,10 +308,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Feathers Bedroom">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Feathers Bedroom">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_19 style="text-decoration: none"><span style='color:#000000'>FB</span></a></span>
<span class="indexblack"><a href=#wo_19 style="text-decoration: none"><span class="indexblack">FB</span></a></span>
</td>
</tr>
</table>
@ -346,7 +346,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>1</i></center></span>
<center><i><span class="indexmaplevelnumbers">1</span></i></center>
</td>
</tr>
@ -444,7 +444,7 @@
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
@ -574,7 +574,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>4</i></center></span>
<center><i><span class="indexmaplevelnumbers">4</span></i></center>
</td>
</tr>
@ -604,10 +604,10 @@
</td>
<td>
<table border="2" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Fort James">
<table border="2" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Fort James">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_13 style="text-decoration: none"><span style='color:#000000'><b>FJ</b></span></a></span>
<span class="indexblack"><a href=#wo_13 style="text-decoration: none"><span class="indexblack"><b>FJ</b></span></a></span>
</td>
</tr>
</table>
@ -783,7 +783,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>4</i></center></span>
<center><i><span class="indexmaplevelnumbers">4</span></i></center>
</td>
</tr>
@ -958,7 +958,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>3</i></center></span>
<center><i><span class="indexmaplevelnumbers">3</span></i></center>
</td>
</tr>
@ -988,10 +988,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Thames Street End">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Thames Street End">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_14 style="text-decoration: none"><span style='color:#000000'>TS</span></a></span>
<span class="indexblack"><a href=#wo_14 style="text-decoration: none"><span class="indexblack">TS</span></a></span>
</td>
</tr>
</table>
@ -1043,10 +1043,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Water Lane">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Water Lane">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_15 style="text-decoration: none"><span style='color:#000000'>WL</span></a></span>
<span class="indexblack"><a href=#wo_15 style="text-decoration: none"><span class="indexblack">WL</span></a></span>
</td>
</tr>
</table>
@ -1098,10 +1098,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Thames Street at the Wherry Bridge">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Thames Street at the Wherry Bridge">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_16 style="text-decoration: none"><span style='color:#000000'>TS</span></a></span>
<span class="indexblack"><a href=#wo_16 style="text-decoration: none"><span class="indexblack">TS</span></a></span>
</td>
</tr>
</table>
@ -1183,7 +1183,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>3</i></center></span>
<center><i><span class="indexmaplevelnumbers">3</span></i></center>
</td>
</tr>
@ -1358,7 +1358,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>2</i></center></span>
<center><i><span class="indexmaplevelnumbers">2</span></i></center>
</td>
</tr>
@ -1388,10 +1388,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Lime Street">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Lime Street">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_20 style="text-decoration: none"><span style='color:#000000'>LS</span></a></span>
<span class="indexblack"><a href=#wo_20 style="text-decoration: none"><span class="indexblack">LS</span></a></span>
</td>
</tr>
</table>
@ -1443,10 +1443,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Brothel">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Brothel">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_23 style="text-decoration: none"><span style='color:#000000'>Br</span></a></span>
<span class="indexblack"><a href=#wo_23 style="text-decoration: none"><span class="indexblack">Br</span></a></span>
</td>
</tr>
</table>
@ -1498,10 +1498,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Private Alley">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Private Alley">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_17 style="text-decoration: none"><span style='color:#000000'>PA</span></a></span>
<span class="indexblack"><a href=#wo_17 style="text-decoration: none"><span class="indexblack">PA</span></a></span>
</td>
</tr>
</table>
@ -1583,7 +1583,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>2</i></center></span>
<center><i><span class="indexmaplevelnumbers">2</span></i></center>
</td>
</tr>
@ -1758,7 +1758,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>1</i></center></span>
<center><i><span class="indexmaplevelnumbers">1</span></i></center>
</td>
</tr>
@ -1788,10 +1788,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Other Brothel">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Other Brothel">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_24 style="text-decoration: none"><span style='color:#000000'>OB</span></a></span>
<span class="indexblack"><a href=#wo_24 style="text-decoration: none"><span class="indexblack">OB</span></a></span>
</td>
</tr>
</table>
@ -1843,10 +1843,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Queen Street Middle">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Queen Street Middle">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_22 style="text-decoration: none"><span style='color:#000000'>QS</span></a></span>
<span class="indexblack"><a href=#wo_22 style="text-decoration: none"><span class="indexblack">QS</span></a></span>
</td>
</tr>
</table>
@ -1898,10 +1898,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Queen Street East">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Queen Street East">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_21 style="text-decoration: none"><span style='color:#000000'>QS</span></a></span>
<span class="indexblack"><a href=#wo_21 style="text-decoration: none"><span class="indexblack">QS</span></a></span>
</td>
</tr>
</table>
@ -1953,10 +1953,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Feathers">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Feathers">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'><a href=#wo_18 style="text-decoration: none"><span style='color:#000000'>Ft</span></a></span>
<span class="indexblack"><a href=#wo_18 style="text-decoration: none"><span class="indexblack">Ft</span></a></span>
</td>
</tr>
</table>
@ -1991,7 +1991,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="53" height="27">
<tr>
<td>
<span style='color:#c0c0c0'><center><i>1</i></center></span>
<center><i><span class="indexmaplevelnumbers">1</span></i></center>
</td>
</tr>
@ -2089,7 +2089,7 @@
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
@ -2114,13 +2114,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -2179,10 +2179,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Fort James">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Fort James">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>FJ</span>
<span class="indexblack">FJ</span>
</td>
</tr>
</table>
@ -2238,16 +2238,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra0', 'plus0'); return false;"><img border=0 id="plus0" src=inform:/doc_images/extra.png></a>&nbsp;<b>Fort James</b> - <i>room where play begins</i>&nbsp;<a href=inform:/doc135.html><img border=0 src=inform:/doc_images/help.png></a>&nbsp;<a href="source:story.ni#line3"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra0" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -2268,29 +2268,29 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
</p>
</div>
<a href="#" onclick="showExtra('extra1', 'plus1'); return false;"><img border=0 id="plus1" src=inform:/doc_images/extra.png></a>&nbsp;yourself - <i>person</i><div id="extra1" style="display: none;">
<p class="in3"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in3"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -2311,13 +2311,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -2376,10 +2376,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Thames Street End">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Thames Street End">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>TS</span>
<span class="indexblack">TS</span>
</td>
</tr>
</table>
@ -2435,16 +2435,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra2', 'plus2'); return false;"><img border=0 id="plus2" src=inform:/doc_images/extra.png></a>&nbsp;<b>Thames Street End</b>&nbsp;<a href="source:story.ni#line4"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra2" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -2467,13 +2467,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -2532,10 +2532,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Water Lane">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Water Lane">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>WL</span>
<span class="indexblack">WL</span>
</td>
</tr>
</table>
@ -2591,16 +2591,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra3', 'plus3'); return false;"><img border=0 id="plus3" src=inform:/doc_images/extra.png></a>&nbsp;<b>Water Lane</b>&nbsp;<a href="source:story.ni#line5"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra3" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -2623,13 +2623,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -2688,10 +2688,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Thames Street at the Wherry Bridge">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Thames Street at the Wherry Bridge">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>TS</span>
<span class="indexblack">TS</span>
</td>
</tr>
</table>
@ -2747,16 +2747,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra4', 'plus4'); return false;"><img border=0 id="plus4" src=inform:/doc_images/extra.png></a>&nbsp;<b>Thames Street at the Wherry Bridge</b>&nbsp;<a href="source:story.ni#line6"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra4" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -2778,13 +2778,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -2843,10 +2843,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Private Alley">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Private Alley">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>PA</span>
<span class="indexblack">PA</span>
</td>
</tr>
</table>
@ -2902,16 +2902,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra5', 'plus5'); return false;"><img border=0 id="plus5" src=inform:/doc_images/extra.png></a>&nbsp;<b>Private Alley</b>&nbsp;<a href="source:story.ni#line7"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra5" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -2934,13 +2934,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -2999,10 +2999,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Feathers">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Feathers">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Ft</span>
<span class="indexblack">Ft</span>
</td>
</tr>
</table>
@ -3058,16 +3058,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra6', 'plus6'); return false;"><img border=0 id="plus6" src=inform:/doc_images/extra.png></a>&nbsp;<b>Feathers</b>&nbsp;<a href="source:story.ni#line8"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra6" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -3089,13 +3089,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -3154,10 +3154,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Feathers Bedroom">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Feathers Bedroom">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>FB</span>
<span class="indexblack">FB</span>
</td>
</tr>
</table>
@ -3213,16 +3213,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra7', 'plus7'); return false;"><img border=0 id="plus7" src=inform:/doc_images/extra.png></a>&nbsp;<b>Feathers Bedroom</b>&nbsp;<a href="source:story.ni#line9"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra7" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -3243,13 +3243,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -3308,10 +3308,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Lime Street">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Lime Street">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>LS</span>
<span class="indexblack">LS</span>
</td>
</tr>
</table>
@ -3367,16 +3367,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra8', 'plus8'); return false;"><img border=0 id="plus8" src=inform:/doc_images/extra.png></a>&nbsp;<b>Lime Street</b>&nbsp;<a href="source:story.ni#line10"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra8" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -3398,13 +3398,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -3463,10 +3463,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Queen Street East">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Queen Street East">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>QS</span>
<span class="indexblack">QS</span>
</td>
</tr>
</table>
@ -3522,16 +3522,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra9', 'plus9'); return false;"><img border=0 id="plus9" src=inform:/doc_images/extra.png></a>&nbsp;<b>Queen Street East</b>&nbsp;<a href="source:story.ni#line11"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra9" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -3553,13 +3553,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -3618,10 +3618,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Queen Street Middle">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Queen Street Middle">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>QS</span>
<span class="indexblack">QS</span>
</td>
</tr>
</table>
@ -3677,16 +3677,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra10', 'plus10'); return false;"><img border=0 id="plus10" src=inform:/doc_images/extra.png></a>&nbsp;<b>Queen Street Middle</b>&nbsp;<a href="source:story.ni#line12"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra10" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -3707,13 +3707,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -3772,10 +3772,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Brothel">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Brothel">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>Br</span>
<span class="indexblack">Br</span>
</td>
</tr>
</table>
@ -3831,16 +3831,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra11', 'plus11'); return false;"><img border=0 id="plus11" src=inform:/doc_images/extra.png></a>&nbsp;<b>Brothel</b>&nbsp;<a href="source:story.ni#line13"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra11" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -3861,13 +3861,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>
@ -3926,10 +3926,10 @@
</td>
<td>
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#000000" width="27" height="27" title="Other Brothel">
<table border="1" cellpadding="0" cellspacing="0" class="indexmaproom" width="27" height="27" title="Other Brothel">
<tr>
<td valign="middle" align="center" bgcolor="#D3D3D3">
<span style='color:#000000'>OB</span>
<span class="indexblack">OB</span>
</td>
</tr>
</table>
@ -3985,16 +3985,16 @@
</td>
<td align="left" valign="top">
<a href="#" onclick="showExtra('extra12', 'plus12'); return false;"><img border=0 id="plus12" src=inform:/doc_images/extra.png></a>&nbsp;<b>Other Brothel</b>&nbsp;<a href="source:story.ni#line14"><img border=0 src=inform:/doc_images/Reveal.png></a><div id="extra12" style="display: none;">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in2"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -4015,13 +4015,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>

File diff suppressed because it is too large Load diff

View file

@ -115,16 +115,16 @@
</table>
<p><a href="#" onclick="showExtra('extra2', 'plus2'); return false;"><img border=0 id="plus2" src=inform:/doc_images/extra.png></a>&nbsp;Show tables inside extensions too</p>
<div id="extra2" style="display: none;">
<p class="in1"><table width="100%" cellpadding="0" cellspacing="0" border="0" style="background-color: #e0e0e0">
<p class="in1"><table width="100%" cellpadding="0" cellspacing="0" border="0" class="indexmorebox">
<tr>
<td width="8">
<img src="inform:/bg_images/tl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/tr_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/tr_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
<tr>
@ -215,13 +215,13 @@
</tr>
<tr>
<td width="8">
<img src="inform:/bg_images/bl_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/bl_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
<td>
</td>
<td width="8">
<img src="inform:/bg_images/br_corner_e0e0e0.gif" width="8" height="8" border="0" alt="...">
<img src="inform:/bg_images/br_corner_indexmorebox.gif" width="8" height="8" border="0" alt="...">
</td>
</tr>
</table>

View file

@ -189,9 +189,9 @@ code for the box.
HTML_CLOSE("p");
if (run_end == idb) {
IndexUtilities::extra_div_open(OUT, idb->allocation_id, 3, "e0e0e0");
IndexUtilities::extra_div_open(OUT, idb->allocation_id, 3, I"indexmorebox");
RTPhrasebook::write_reveal_box(OUT, &(run_begin->type_data), run_begin);
IndexUtilities::extra_div_close(OUT, "e0e0e0");
IndexUtilities::extra_div_close(OUT, I"indexmorebox");
}
package_request *entry =
Hierarchy::package_within(PHRASEBOOK_ENTRY_HAP, last_heading_package);

View file

@ -125,8 +125,6 @@ int IndexRules::no_rules(inter_package *rb_pack) {
@h Rulebook boxes.
@d RULEBOOK_BOX_COLOUR "e0e0e0"
=
void IndexRules::rulebook_box(OUTPUT_STREAM, tree_inventory *inv,
text_stream *titling_key, text_stream *doc_link, inter_package *rb_pack,
@ -151,14 +149,14 @@ void IndexRules::rulebook_box(OUTPUT_STREAM, tree_inventory *inv,
WRITE(" (%d rule%s)", n, (n==1)?"":"s");
if (n == 0) HTML::end_span(OUT);
HTML_CLOSE("p");
IndexUtilities::extra_div_open(OUT, expand_id, indent+1, RULEBOOK_BOX_COLOUR);
IndexUtilities::extra_div_open(OUT, expand_id, indent+1, I"indexmorebox");
@<Index the contents of the rulebook box@>;
IndexUtilities::extra_div_close(OUT, RULEBOOK_BOX_COLOUR);
IndexUtilities::extra_div_close(OUT, I"indexmorebox");
} else {
HTML::open_indented_p(OUT, indent, "");
HTML::open_coloured_box(OUT, RULEBOOK_BOX_COLOUR, ROUND_BOX_TOP+ROUND_BOX_BOTTOM);
HTML::open_coloured_box(OUT, I"indexmorebox", ROUND_BOX_TOP+ROUND_BOX_BOTTOM);
@<Index the contents of the rulebook box@>;
HTML::close_coloured_box(OUT, RULEBOOK_BOX_COLOUR, ROUND_BOX_TOP+ROUND_BOX_BOTTOM);
HTML::close_coloured_box(OUT, I"indexmorebox", ROUND_BOX_TOP+ROUND_BOX_BOTTOM);
HTML_CLOSE("p");
}
DISCARD_TEXT(textual_name)
@ -483,8 +481,6 @@ void IndexRules::rb_index_placements(OUTPUT_STREAM, inter_tree *I, inter_package
This is all just meant to convey visually that the three constituent rulebooks
of an activity are part of a single construct:
@d ACTIVITY_BOX_COLOUR "e8e0c0"
=
void IndexRules::activity_box(OUTPUT_STREAM, inter_tree *I, inter_package *av_pack,
int indent, index_session *session) {
@ -519,7 +515,7 @@ void IndexRules::activity_box(OUTPUT_STREAM, inter_tree *I, inter_package *av_pa
if (n == 0) HTML::end_span(OUT);
HTML_CLOSE("p");
IndexUtilities::extra_div_open(OUT, expand_id, indent+1, ACTIVITY_BOX_COLOUR);
IndexUtilities::extra_div_open(OUT, expand_id, indent+1, I"indexactivitycontents");
HTML::begin_html_table(OUT, NULL, TRUE, 0, 4, 0, 0, 0);
HTML::first_html_column(OUT, 0);
@ -568,7 +564,7 @@ void IndexRules::activity_box(OUTPUT_STREAM, inter_tree *I, inter_package *av_pa
HTML_CLOSE("p");
}
IndexUtilities::extra_div_close(OUT, ACTIVITY_BOX_COLOUR);
IndexUtilities::extra_div_close(OUT, I"indexactivitycontents");
}
@<Write the titling line of an activity rules box@> =

View file

@ -188,13 +188,13 @@ void IndexUtilities::noextra_link(OUTPUT_STREAM) {
@ These open up divisions:
=
void IndexUtilities::extra_div_open(OUTPUT_STREAM, int id, int indent, char *colour) {
void IndexUtilities::extra_div_open(OUTPUT_STREAM, int id, int indent, text_stream *colour) {
HTML_OPEN_WITH("div", "id=\"extra%d\" style=\"display: none;\"", id);
HTML::open_indented_p(OUT, indent, "");
HTML::open_coloured_box(OUT, colour, ROUND_BOX_TOP+ROUND_BOX_BOTTOM);
}
void IndexUtilities::extra_div_close(OUTPUT_STREAM, char *colour) {
void IndexUtilities::extra_div_close(OUTPUT_STREAM, text_stream *colour) {
HTML::close_coloured_box(OUT, colour, ROUND_BOX_TOP+ROUND_BOX_BOTTOM);
HTML_CLOSE("p");
HTML_CLOSE("div");

View file

@ -13,7 +13,7 @@ void CardElement::render(OUTPUT_STREAM, index_session *session) {
HTML_OPEN("p");
IndexUtilities::anchor(OUT, I"LCARD");
HTML::begin_html_table(OUT, "*bg_images/indexcard.png", FALSE, 0, 3, 3, 0, 0);
HTML::begin_html_table_bg(OUT, NULL, FALSE, 0, 3, 3, 0, 0, I"bg_images/indexcard.png");
CardElement::Library_Card_entry(OUT, "Story title", pack, I"^title", I"Untitled");
CardElement::Library_Card_entry(OUT, "Story author", pack, I"^author", I"Anonymous");
CardElement::Library_Card_entry(OUT, "Story headline", pack, I"^headline", I"An Interactive Fiction");

View file

@ -59,7 +59,7 @@ higher up, but kinds with priority 0 do not appear in the index at all.
@ An atypical row:
@<Add a titling row to the chart of kinds@> =
HTML::first_html_column_nowrap(OUT, 0, "#e0e0e0");
HTML::first_html_column_nowrap(OUT, 0, I"headingrow");
WRITE("<b>");
Localisation::roman(OUT, D, I"Index.Elements.Ch.BasicKinds");
WRITE("</b>");
@ -72,7 +72,7 @@ higher up, but kinds with priority 0 do not appear in the index at all.
@ And another:
@<Add a second titling row to the chart of kinds@> =
HTML::first_html_column_nowrap(OUT, 0, "#e0e0e0");
HTML::first_html_column_nowrap(OUT, 0, I"headingrow");
WRITE("<b>");
Localisation::roman(OUT, D, I"Index.Elements.Ch.NewKinds");
WRITE("</b>");
@ -85,7 +85,7 @@ higher up, but kinds with priority 0 do not appear in the index at all.
@ A dotty row:
@<Add a dotty row to the chart of kinds@> =
HTML_OPEN_WITH("tr", "bgcolor=\"#888\"");
HTML_OPEN_WITH("tr", "class=\"tintedrow\"");
HTML_OPEN_WITH("td", "height=\"1\" colspan=\"5\" cellpadding=\"0\"");
HTML_CLOSE("td");
HTML_CLOSE("tr");
@ -231,8 +231,8 @@ is called --
=
void ChartElement::begin_chart_row(OUTPUT_STREAM, index_session *session) {
char *col = NULL;
if (IndexUtilities::stripe(session) == FALSE) col = "#f0f0ff";
text_stream *col = I"stripeone";
if (IndexUtilities::stripe(session) == FALSE) col = I"stripetwo";
HTML::first_html_column_nowrap(OUT, 0, col);
}
@ -383,9 +383,9 @@ void ChartElement::index_instances(OUTPUT_STREAM, tree_inventory *inv, inter_pac
IndexUtilities::kind_name(OUT, pack, TRUE, FALSE);
HTML::end_span(OUT);
HTML_CLOSE("p");
IndexUtilities::extra_div_open(OUT, xtra, depth+1, "e0e0e0");
IndexUtilities::extra_div_open(OUT, xtra, depth+1, I"indexmorebox");
@<Itemise the instances@>;
IndexUtilities::extra_div_close(OUT, "e0e0e0");
IndexUtilities::extra_div_close(OUT, I"indexmorebox");
} else {
@<Itemise the instances@>;
HTML_CLOSE("p");

View file

@ -42,7 +42,7 @@ to match this width, preserving the aspect ratio.
inter_package *settings = InterPackage::from_URL(I, I"/main/completion/basics");
int MAX_INDEXED_FIGURES =
(int) Metadata::read_optional_numeric(settings, I"^max_indexed_figures");
HTML::begin_html_table(OUT, "#ffffff", TRUE, 0, 0, 0, 0, 0);
HTML::begin_html_table(OUT, NULL, TRUE, 0, 0, 0, 0, 0);
int count_of_displayed_figures = 0;
inter_package *pack;
LOOP_OVER_INVENTORY_PACKAGES(pack, i, inv->figure_nodes) {
@ -107,7 +107,7 @@ to match this width, preserving the aspect ratio.
WRITE("&nbsp;");
} else {
HTML_OPEN_WITH("div",
"style=\"width:%dpx; height:%dpx; border:1px solid; background-color:#6495ed;\"",
"class=\"figureindexbox\" style=\"width:%dpx; height:%dpx; border:1px solid;\"",
THUMBNAIL_WIDTH, THUMBNAIL_WIDTH*height/width);
WRITE("&nbsp;");
HTML_CLOSE("div");
@ -140,7 +140,7 @@ to match this width, preserving the aspect ratio.
}
@<Tabulate the sounds@> =
HTML::begin_html_table(OUT, "#ffffff", TRUE, 0, 0, 0, 0, 0);
HTML::begin_html_table(OUT, NULL, TRUE, 0, 0, 0, 0, 0);
inter_package *pack;
LOOP_OVER_INVENTORY_PACKAGES(pack, i, inv->sound_nodes) {
inter_ti id = Metadata::read_numeric(pack, I"^resource_id");
@ -286,7 +286,7 @@ This is more or less perfunctory, but still of some use, if only as a list.
}
@<Tabulate the files@> =
HTML::begin_html_table(OUT, "#ffffff", TRUE, 0, 0, 0, 0, 0);
HTML::begin_html_table(OUT, NULL, TRUE, 0, 0, 0, 0, 0);
inter_package *pack;
LOOP_OVER_INVENTORY_PACKAGES(pack, i, inv->file_nodes) {
HTML::first_html_column(OUT, THUMBNAIL_WIDTH+10);

View file

@ -19,13 +19,13 @@ void InnardsElement::render(OUTPUT_STREAM, index_session *session) {
IndexUtilities::extra_link(OUT, 3);
Localisation::roman(OUT, LD, I"Index.Elements.In.Technicalities");
HTML_CLOSE("p");
IndexUtilities::extra_div_open(OUT, 3, 2, "e0e0e0");
IndexUtilities::extra_div_open(OUT, 3, 2, I"indexmorebox");
HTML_OPEN("p");
IndexUtilities::anchor(OUT, I"CONFIG");
HTML_CLOSE("p");
@<Show the language elements used@>;
@<Add some paste buttons for the debugging log@>;
IndexUtilities::extra_div_close(OUT, "e0e0e0");
IndexUtilities::extra_div_close(OUT, I"indexmorebox");
}
@<Show the virtual machine compiled for@> =

View file

@ -121,11 +121,11 @@ void MapElement::index(OUTPUT_STREAM, faux_instance *I, int depth, int details,
@<End the object citation line@>;
if (details) @<Add a subsidiary paragraph of details about this object@>;
if (xtra >= 0) {
IndexUtilities::extra_div_open(OUT, xtra, depth+1, "e0e0e0");
IndexUtilities::extra_div_open(OUT, xtra, depth+1, I"indexmorebox");
@<Add the chain of kinds@>;
@<Add the catalogue of specific properties@>;
@<Add details depending on the kind@>;
IndexUtilities::extra_div_close(OUT, "e0e0e0");
IndexUtilities::extra_div_close(OUT, I"indexmorebox");
}
@<Recurse the index citation for the object as necessary@>;
}

View file

@ -49,7 +49,7 @@ Rules, which of course are always present. So these are hidden by default.
HTML_CLOSE("p");
first_ext = FALSE;
}
IndexUtilities::extra_div_open(OUT, 2, 1, "e0e0e0");
IndexUtilities::extra_div_open(OUT, 2, 1, I"indexmorebox");
HTML_OPEN("p");
WRITE("<i>%S</i>", Metadata::required_textual(mod, I"^title"));
HTML_CLOSE("p");
@ -60,7 +60,7 @@ Rules, which of course are always present. So these are hidden by default.
@<Close block of tables@> =
if (mc > 0) {
HTML::end_html_table(OUT);
if (open_cat > 1) IndexUtilities::extra_div_close(OUT, "e0e0e0");
if (open_cat > 1) IndexUtilities::extra_div_close(OUT, I"indexmorebox");
}
@<Index this table@> =

View file

@ -349,7 +349,10 @@ void HTMLMap::begin_map_table(OUTPUT_STREAM, int width, int height) {
void HTMLMap::begin_variable_width_table_with_background(OUTPUT_STREAM, char *bg_image) {
@<Include some indentation for a new map table@>;
map_tables_begun++;
HTML::begin_html_table_bg(OUT, NULL, FALSE, 0, 0, 0, 0, 0, bg_image);
TEMPORARY_TEXT(img)
WRITE_TO(img, "map_icons/%s", bg_image);
HTML::begin_html_table_bg(OUT, NULL, FALSE, 0, 0, 0, 0, 0, img);
DISCARD_TEXT(img)
}
@ Each table, however begun, concludes with:
@ -465,9 +468,9 @@ void HTMLMap::render_map_as_HTML(OUTPUT_STREAM, index_session *session) {
HTML_OPEN("tr"); HTML_OPEN("td");
int rounding = 0;
if (z == session->calc.Universe.corner1.z) rounding = ROUND_BOX_TOP;
HTML::open_coloured_box(OUT, "e0e0e0", rounding);
HTML::open_coloured_box(OUT, I"indexmorebox", rounding);
WRITE("<i>%S</i>", level_rubric);
HTML::close_coloured_box(OUT, "e0e0e0", rounding);
HTML::close_coloured_box(OUT, I"indexmorebox", rounding);
HTML_CLOSE("td"); HTML_CLOSE("tr");
DISCARD_TEXT(level_rubric)
@ -490,8 +493,8 @@ void HTMLMap::render_map_as_HTML(OUTPUT_STREAM, index_session *session) {
@<Draw the baseline rubric row which concludes the map@> =
HTML_OPEN("tr"); HTML_OPEN("td");
HTML::open_coloured_box(OUT, "e0e0e0", ROUND_BOX_BOTTOM);
HTML::close_coloured_box(OUT, "e0e0e0", ROUND_BOX_BOTTOM);
HTML::open_coloured_box(OUT, I"indexmorebox", ROUND_BOX_BOTTOM);
HTML::close_coloured_box(OUT, I"indexmorebox", ROUND_BOX_BOTTOM);
HTML_CLOSE("td"); HTML_CLOSE("tr");
@<Add a paragraph describing how non-standard directions are mapped@> =
@ -830,13 +833,13 @@ and south ends.
HTMLMap::begin_map_table(OUT, MAP_CELL_SIZE, MAP_CELL_INNER_SIZE);
HTML_OPEN("tr");
HTML_OPEN("td");
HTML::begin_colour(OUT, I"c0c0c0");
HTML_OPEN("center");
HTML_OPEN("i");
HTML::begin_span(OUT, I"indexmaplevelnumbers");
WRITE("%d", y-session->calc.Universe.corner0.y+1);
HTML::end_span(OUT);
HTML_CLOSE("i");
HTML_CLOSE("center");
HTML::end_colour(OUT);
HTML_CLOSE("td");
HTML_CLOSE("tr");
HTMLMap::end_map_table(OUT);
@ -934,8 +937,6 @@ which are bordered and coloured single-cell tables.
@d ROOM_BORDER_SIZE 1
@d B_ROOM_BORDER_SIZE 2
@d ROOM_BORDER_COLOUR "000000"
@d ROOM_TEXT_COLOUR "000000"
=
void HTMLMap::index_room_square(OUTPUT_STREAM, faux_instance *I, int pass, index_session *session) {
@ -944,25 +945,18 @@ void HTMLMap::index_room_square(OUTPUT_STREAM, faux_instance *I, int pass, index
if ((I == FauxInstances::benchmark(session)) && (pass == 1)) b = B_ROOM_BORDER_SIZE;
HTML_OPEN_WITH("table",
"border=\"%d\" cellpadding=\"0\" cellspacing=\"0\" "
"bordercolor=\"#%s\" width=\"%d\" height=\"%d\" title=\"%S\"",
b, ROOM_BORDER_COLOUR, MAP_CELL_INNER_SIZE, MAP_CELL_INNER_SIZE,
FauxInstances::get_name(I));
"class=\"indexmaproom\" width=\"%d\" height=\"%d\" title=\"%S\"",
b, MAP_CELL_INNER_SIZE, MAP_CELL_INNER_SIZE, FauxInstances::get_name(I));
HTML_OPEN("tr");
HTML_OPEN_WITH("td", "valign=\"middle\" align=\"center\" bgcolor=\"#%S\"",
I->fimd.colour);
TEMPORARY_TEXT(col)
if (I->fimd.text_colour)
WRITE_TO(col, "%S", I->fimd.text_colour);
else
WRITE_TO(col, "%s", ROOM_TEXT_COLOUR);
HTML::begin_colour(OUT, col);
@<Enter the text colour@>;
@<Write the text of the abbreviated name of the room@>;
HTML::end_colour(OUT);
@<Exit the text colour@>;
HTML_CLOSE("td");
HTML_CLOSE("tr");
HTML_CLOSE("table");
WRITE("\n");
DISCARD_TEXT(col)
}
}
@ -970,7 +964,7 @@ void HTMLMap::index_room_square(OUTPUT_STREAM, faux_instance *I, int pass, index
if (pass == 1) {
HTML_OPEN_WITH("a", "href=#wo_%d style=\"text-decoration: none\"",
I->allocation_id);
HTML::begin_colour(OUT, col);
@<Enter the text colour@>;
}
if ((pass == 1) && (I == FauxInstances::benchmark(session))) HTML_OPEN("b");
TEMPORARY_TEXT(abbrev)
@ -978,9 +972,21 @@ void HTMLMap::index_room_square(OUTPUT_STREAM, faux_instance *I, int pass, index
LOOP_THROUGH_TEXT(pos, abbrev)
HTML::put(OUT, Str::get(pos));
if ((pass == 1) && (I == FauxInstances::benchmark(session))) HTML_CLOSE("b");
if (pass == 1) { HTML::end_colour(OUT); HTML_CLOSE("a"); }
if (pass == 1) { @<Exit the text colour@>; HTML_CLOSE("a"); }
DISCARD_TEXT(abbrev)
@<Enter the text colour@> =
if (Str::len(I->fimd.text_colour) > 0)
HTML::begin_colour(OUT, I->fimd.text_colour);
else
HTML::begin_span(OUT, I"indexblack");
@<Exit the text colour@> =
if (Str::len(I->fimd.text_colour) > 0)
HTML::end_colour(OUT);
else
HTML::end_span(OUT);
@h The colour chip.
The first of two extras, which aren't strictly speaking part of the HTML map.
This is the chip shown on the "details" box for a room in the World Index.
@ -989,8 +995,8 @@ This is the chip shown on the "details" box for a room in the World Index.
void HTMLMap::colour_chip(OUTPUT_STREAM, faux_instance *I, faux_instance *Reg, int at) {
HTML_OPEN_WITH("table",
"border=\"%d\" cellpadding=\"0\" cellspacing=\"0\" "
"bordercolor=\"#%s\" height=\"%d\"",
ROOM_BORDER_SIZE, ROOM_BORDER_COLOUR, MAP_CELL_INNER_SIZE);
"bordercolor=\"indexmaproom\" height=\"%d\"",
ROOM_BORDER_SIZE, MAP_CELL_INNER_SIZE);
HTML_OPEN("tr");
HTML_OPEN_WITH("td", "valign=\"middle\" align=\"center\" bgcolor=\"#%S\"",
Reg->fimd.colour);

View file

Before

Width:  |  Height:  |  Size: 142 B

After

Width:  |  Height:  |  Size: 142 B

View file

Before

Width:  |  Height:  |  Size: 70 B

After

Width:  |  Height:  |  Size: 70 B

View file

Before

Width:  |  Height:  |  Size: 140 B

After

Width:  |  Height:  |  Size: 140 B

View file

Before

Width:  |  Height:  |  Size: 70 B

After

Width:  |  Height:  |  Size: 70 B

View file

Before

Width:  |  Height:  |  Size: 79 B

After

Width:  |  Height:  |  Size: 79 B

View file

Before

Width:  |  Height:  |  Size: 79 B

After

Width:  |  Height:  |  Size: 79 B

View file

Before

Width:  |  Height:  |  Size: 142 B

After

Width:  |  Height:  |  Size: 142 B

View file

Before

Width:  |  Height:  |  Size: 71 B

After

Width:  |  Height:  |  Size: 71 B

View file

@ -198,19 +198,19 @@ These are the destinations of links from heading lines in the TOC.
@<Typeset the table of contents entry for this heading@> =
switch (edhl) {
case 1:
HTML::begin_colour(OUT, I"000000");
HTML::begin_span(OUT, I"indexblack");
HTML_OPEN("b");
HTML_OPEN_WITH("a",
"style=\"text-decoration: none\" href=#docsec%d", heading_count);
WRITE("Chapter %d: ", chapter_count);
HTML_CLOSE("a");
HTML_CLOSE("b");
HTML::end_colour(OUT);
HTML::end_span(OUT);
break;
case 2:
if (chapter_count > 0) /* if there are chapters as well as sections... */
WRITE("&nbsp;&nbsp;&nbsp;"); /* ...then set an indentation before entry */
HTML::begin_colour(OUT, I"000000");
HTML::begin_span(OUT, I"indexblack");
HTML_OPEN_WITH("a", "style=\"text-decoration: none\" href=#docsec%d", heading_count);
WRITE("Section ");
if (chapter_count > 0) /* if there are chapters as well as sections... */
@ -218,7 +218,7 @@ These are the destinations of links from heading lines in the TOC.
else
WRITE("%d: ", section_count); /* otherwise quote section number only */
HTML_CLOSE("a");
HTML::end_colour(OUT);
HTML::end_span(OUT);
break;
default: internal_error("unable to set this heading level in extension TOC");
}
@ -236,13 +236,13 @@ far as the user is concerned it opens the example and goes there.
WRITE_TO(link, "style=\"text-decoration: none\" href=\"");
DocumentationRenderer::href_of_example(link, base_leafname, example_count, example_count);
WRITE_TO(link, "\"");
HTML::begin_colour(OUT, I"000000");
HTML::begin_span(OUT, I"indexblack");
HTML_OPEN_WITH("a", "%S", link);
PUT('A'+example_count-1); /* the letter A to Z */
WRITE(" &mdash; ");
DocumentationRenderer::set_body_text(NW, OUT, EDOC_FRAGMENT_ONLY, NULL);
HTML_CLOSE("a");
HTML::end_colour(OUT);
HTML::end_span(OUT);
HTML_TAG("br");
@
@ -317,7 +317,7 @@ break, and a chance to restore our tired variables.
@<Handle a paragraph break@> =
if (mid_displayed_source_text) {
HTML::end_colour(OUT);
HTML::end_span(OUT);
if (mid_I7_table) @<End I7 table in extension documentation@>;
HTML_CLOSE("blockquote");
} else {
@ -419,7 +419,7 @@ need to achieve with an HTML |<table>|.
if (mid_I7_table) row_of_table_is_empty = TRUE;
} else {
HTML_OPEN("blockquote");
HTML::begin_colour(OUT, I"000080");
HTML::begin_span(OUT, I"indexdullblue");
mid_displayed_source_text = TRUE;
if (<table-sentence>(Wordings::from(W, i)))
start_table_next_line = TRUE;
@ -438,10 +438,10 @@ anchor |#docsecN|.
HTML_OPEN("p");
switch (edhl) {
case 1:
HTML::begin_colour(OUT, I"800000");
HTML::begin_span(OUT, I"indexdullred");
break;
case 2:
HTML::begin_colour(OUT, I"000000");
HTML::begin_span(OUT, I"indexblack");
break;
}
HTML_OPEN("b");
@ -459,7 +459,7 @@ anchor |#docsecN|.
DocumentationRenderer::set_body_text(NW, OUT, EDOC_FRAGMENT_ONLY, NULL);
HTML_CLOSE("span");
HTML_CLOSE("b");
HTML::end_colour(OUT);
HTML::end_span(OUT);
HTML_CLOSE("p");
@ An example is set with a two-table header, and followed optionally by a
@ -486,12 +486,12 @@ in the next section.
while (asterisks-- > 0)
HTML_TAG_WITH("img", "border=\"0\" src='inform:/doc_images/asterisk.png'");
HTML_OPEN("b");
HTML::begin_colour(OUT, I"505050");
HTML::begin_span(OUT, I"indexdarkgrey");
WRITE("&nbsp;Example&nbsp;");
HTML::end_colour(OUT);
HTML::begin_colour(OUT, I"000000");
HTML::end_span(OUT);
HTML::begin_span(OUT, I"indexblack");
DocumentationRenderer::set_body_text(NW, OUT, EDOC_FRAGMENT_ONLY, base_leafname);
HTML::end_colour(OUT);
HTML::end_span(OUT);
HTML_CLOSE("b");
HTML_CLOSE("a"); /* Link does not cover body, only heading */
HTML_TAG("br");
@ -518,11 +518,10 @@ had its infamous PNG transparency bug.)
@<Incorporate link to the example opened up@>;
HTML_OPEN_WITH("div",
"class=\"paragraph Body\" style=\"line-height: 1px; margin-bottom: 0px; "
"margin-top: 0px; padding-bottom: 0pt; padding-top: 0px; text-align: center; "
"color: #202020; font-size: 14px; line-height: 1px;\"");
HTML_OPEN("b");
"margin-top: 0px; padding-bottom: 0pt; padding-top: 0px; text-align: center;\"");
HTML::begin_span(OUT, I"extensionexampleletter");
PUT('A' + example_count - 1);
HTML_CLOSE("b");
HTML::end_span(OUT);
HTML_CLOSE("div");
HTML_CLOSE("a");
HTML_CLOSE("td");
@ -548,17 +547,17 @@ Unsurprisingly, I7 tables are set (after their titling lines) as HTML tables,
and this is fiddly but elementary in the usual way of HTML tables:
@<Begin I7 table in extension documentation@> =
HTML::end_colour(OUT);
HTML::end_span(OUT);
HTML_TAG("br");
HTML::begin_plain_html_table(OUT);
HTML::first_html_column(OUT, 0);
@<End table cell for I7 table in extension documentation@> =
HTML::end_colour(OUT);
HTML::end_span(OUT);
HTML::next_html_column(OUT, 0);
@<Begin table cell for I7 table in extension documentation@> =
HTML::begin_colour(OUT, I"000080");
HTML::begin_span(OUT, I"indexdullblue");
@<Begin new row of I7 table in extension documentation@> =
HTML::end_html_row(OUT);
@ -575,7 +574,7 @@ a shaded HTML table, containing just one row, which contains just one
cell. Here the inset table begins:
@<Open the new example's text@> =
HTML::begin_html_table(OUT, "#f0f0f0", TRUE, 0, 0, 0, 0, 0);
HTML::begin_html_table(OUT, I"extensionexample", TRUE, 0, 0, 0, 0, 0);
HTML::first_html_column(OUT, 0);
HTML_OPEN("p");