PDA

View Full Version : tables on Netscape


joel74
01-27-2000, 09:29 PM
Okay, HTML experts:

I'm trying to use tables to create an 'Amazon effect' on my website: www.queerscopes.com (http://www.queerscopes.com).[nbsp][nbsp](I think Amazon has changed their look since I got the idea.)

That is, there's a horizontal heading, and 2 columns on each side with links and ads, and a wide column in the middle with most of the contents.

It seems to work fine on IE: the background colors of the side columns extend all the way to the bottom of the page.[nbsp][nbsp]But on Netscape, the side columns are only as long as their contents, and the middle column sometimes extends far beyond them.

Any ideas or advice?

Thanks.

Charles Capps
01-27-2000, 10:41 PM
Ok, the tables only render like they're supposed to (according to your desires) in IE - in Netscape and Mozilla M13, the color gets cut off...[nbsp][nbsp]

Weird table layout...[nbsp][nbsp]Hm.[nbsp][nbsp]

A brief opening of the page in Netscape's editor reveals that the tables are VERY messed up.[nbsp][nbsp]*L*

For instance:

[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td[nbsp][nbsp]align=&quot;center&quot; >
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<a href=&quot;/pisces/&quot;><img src=&quot;/graphics/pisces.gif&quot; alt=&quot;PIS&quot; border=&quot;0&quot;></a>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</td>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</tr>
</table>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</td>
<font color=#FF0000>[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<tr></font>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<tr bgcolor=&quot;#0000ff&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;right&quot;>

See the red line?[nbsp][nbsp]That's currently a <tr>, but it should be a </tr>.[nbsp][nbsp]That's probably the cause of one problem.......[nbsp][nbsp]Ok, I got about halfway through before I got so lost in those tables.[nbsp][nbsp]
What did you use to create the page?
.
[This message has been edited by Charles Capps (edited 01-27-00@10:42 pm)]

Dan Kaplan
01-27-2000, 10:57 PM
To second Charles' points, I also got rather lost in the code.[nbsp][nbsp]I noticed a couple of opening quotes in tags without corresponding closing quotes.[nbsp][nbsp]Also, you have most of the tables nested, which is a good thing, but they are not consistent.[nbsp][nbsp]If you set it up like this simplified example throughout, it will be MUCH easier to troubleshoot:

<table>
[nbsp][nbsp] <tr><td>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<table>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp] <tr><td>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp] </td></tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</table>
[nbsp][nbsp] </td></tr>
[nbsp][nbsp] <tr><td>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<table>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp] <tr><td>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp] </td></tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</table>
[nbsp][nbsp] </td></tr>
</table>

If nothing else, it makes for a cool looking pattern.[nbsp][nbsp]:)

Dsigns

joel74
01-28-2000, 12:17 AM
I should have put a disclaimer in the original post! (Thanks for pointing out the rougue <tr>; I'm searching for the lonely quotes now

The page you saw was the result of about 8 SSI'ed files.

They're all relatively pretty (and small) on their on, but the finished product is a scrambled mess!

I was hoping that there was a generic way for to solve the problem. I should be so lucky.[nbsp][nbsp]This is the highest level table, and the included files are also tables.[nbsp][nbsp]leftbar4 and rightbar4 are the rogue colored columns.


<table border=0 cellpadding=0 cellspacing=0 width=&quot;100%&quot; align=&quot;center&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp]<tr width=&quot;100%&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; width=&quot;100%&quot; colspan=3>
[nbsp][nbsp][nbsp][nbsp][nbsp]<!--#include file=&quot;topbanner4.shtml&quot;-->
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</td>
[nbsp][nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp] <td width=&quot;15%&quot; valign=&quot;top&quot; height=&quot;100%&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp]<!--#include file=&quot;leftbar4.shtml&quot;-->
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</td>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td valign=&quot;top&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]

[nbsp][nbsp][nbsp][nbsp][nbsp]<!--#include file=&quot;indexcontents.shtml&quot;-->
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</td>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td width=&quot;150&quot; valign=&quot;top&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp]<!--#include file=&quot;rightbar4.shtml&quot;-->[nbsp][nbsp][nbsp][nbsp][nbsp]
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</td>
[nbsp][nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; width=&quot;100%&quot; colspan=3>
[nbsp][nbsp][nbsp][nbsp][nbsp]<!--#include file=&quot;bottombanner.shtml&quot;-->
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</td>
[nbsp][nbsp][nbsp][nbsp][nbsp]</tr>
</table>

Any ideas?

<!-- NO_AUTO_LINK -->

Charles Capps
01-28-2000, 12:22 AM
Leftbar:[nbsp][nbsp]height=&quot;200%&quot; ..[nbsp][nbsp]Change that to 100%, then do the same for the <td> in the main file...

Dan Kaplan
01-28-2000, 12:29 AM
Not having delved too deeply into your code... try this:[nbsp][nbsp]At the bottom of the column that is not extending all the way, add something like:

<table width=&quot;100%&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; border=&quot;0&quot; height=&quot;100%&quot;><tr BGCOLOR=&quot;&quot;><td>&amp;nbsp;</td></tr></table>

That would go inside of the closing </td></tr> for that column, and then add whatever background color you want.[nbsp][nbsp]I think that will force it to extend to the full column height.[nbsp][nbsp]If that doesn't do it, I'll go back and see how I've done it before.

Delve

joel74
01-28-2000, 12:38 AM
Done.[nbsp][nbsp](no change)

Is there maybe a way for the actual height of the middle column to become an environment variable that could be used by the side tables?!?

Just wondering.

Thanks

Dan Kaplan
01-28-2000, 08:40 AM
I've never known height settings to have much affect, if any.[nbsp][nbsp]Although, I still sometimes use them superstitiously.[nbsp][nbsp]:)

If you haven't already, I would recommend setting up a test page without any of the SSI.[nbsp][nbsp]Put it all in one page, get things nested properly, and take out all the text except for a few words as place holders.[nbsp][nbsp]This is also the way I would approach building a page with SSI -- create it as a single page of HTML, then remove the SSI sections when you are done, so as to keep the nested structure in place for the finished product.

Anyway, here is the general structure you are looking for:


<table width=&quot;100%&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; border=&quot;0&quot;>
[nbsp][nbsp][nbsp][nbsp] <tr><td width=&quot;100%&quot; valign=&quot;top&quot; colspan=&quot;3&quot; align=&quot;center&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]Top section
[nbsp][nbsp][nbsp][nbsp] </td></tr>
[nbsp][nbsp][nbsp][nbsp] <tr><td width=&quot;30%&quot; valign=&quot;top&quot; align=&quot;center&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]Left side
[nbsp][nbsp][nbsp][nbsp] </td><td width=&quot;40%&quot; valign=&quot;top&quot; align=&quot;center&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]Center section
[nbsp][nbsp][nbsp][nbsp] </td><td width=&quot;30%&quot; valign=&quot;top&quot; align=&quot;center&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]Right side
[nbsp][nbsp][nbsp][nbsp] </td></tr>
[nbsp][nbsp][nbsp][nbsp] <tr><td width=&quot;100%&quot; valign=&quot;top&quot; colspan=&quot;3&quot; align=&quot;center&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]Bottom section
[nbsp][nbsp][nbsp][nbsp] </td></tr>
</table>


I'm guessing the bottom section is what you are missing.[nbsp][nbsp]It ties all of the columns together at the same finishing point.[nbsp][nbsp]The code snippet I mentioned in the previous post is addressing a different, but similar situation with lots of imbedded tables.

Hope this helps,
Dtermined

[This message has been edited by Dan Kaplan (edited 01-28-00@08:42 am)]

joel74
02-01-2000, 02:17 PM
Hey guys, it works!![nbsp][nbsp]Thanks for your brainstorming.

That last code segment lit the fuse of the firecracker of success (sounds like a fortune cookie).

I had the bgcolor set for the imbedded tables but not for the outer tables:


<table width=&quot;100%&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; border=&quot;0&quot;>
[nbsp][nbsp][nbsp][nbsp] <tr><td width=&quot;100%&quot; valign=&quot;top&quot; colspan=&quot;3&quot; align=&quot;center&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]Top section
[nbsp][nbsp][nbsp][nbsp] </td></tr>
[nbsp][nbsp][nbsp][nbsp] <tr><td width=&quot;30%&quot; valign=&quot;top&quot; align=&quot;center&quot; <!--instead of bdclor here -->>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<table <!-- i had bgcolor here -->>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]Left side
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</table>
[nbsp][nbsp][nbsp][nbsp] </td><td width=&quot;40%&quot; valign=&quot;top&quot; align=&quot;center&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]Center section
[nbsp][nbsp][nbsp][nbsp] </td><td width=&quot;30%&quot; valign=&quot;top&quot; align=&quot;center&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]Right side
[nbsp][nbsp][nbsp][nbsp] </td></tr>
[nbsp][nbsp][nbsp][nbsp] <tr><td width=&quot;100%&quot; valign=&quot;top&quot; colspan=&quot;3&quot; align=&quot;center&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]Bottom section
[nbsp][nbsp][nbsp][nbsp] </td></tr>
</table>

Rain
02-08-2000, 02:12 AM
Your thread was very timely.[nbsp][nbsp]I am having a problem with tables on a design. Any help would be very appreciated!
You can go to http://nurturethis.com/indexfamilychild.htm and see the look I am striving for...
I was having the same problems as Joel with the uneveness at the bottom.[nbsp][nbsp]In fact you can visit the pregnacy section and see the problems I was having.[nbsp][nbsp]I am using the Dreamweaver function of converting layers to a table. I attempted to simplify the design in light of the advice you gave Joel in finishing off the bottom <tr>.[nbsp][nbsp]See the new look at http://nurturethis.tabletestbms2.htm I can see where I can have the header the navigation tabs, the two sets of bars all in the &quot;top&quot; section of the table structure you suggested to Joel.[nbsp][nbsp]BUT...Whah!!! ( I am crying now!)
[nbsp]I have attempted to reformat this page into a series of nested tables. Unfortunately, the up and down tab structure I have for navigation got all screwy looking despite my best efforts.[nbsp][nbsp]I am kind of at a loss.[nbsp][nbsp]I have tried all kinds of things, I won't bore you with the details.[nbsp][nbsp]It seems like every solution has it's own demons.[nbsp][nbsp]Do you have any advice for me?[nbsp][nbsp]I would like to keep the original design but at this point do not see how I can convert to tables and have cohesion when I add a page w/ larger images or text.[nbsp][nbsp]Ps the pages that actually do have cohesion, if you peruse the pregnancy section are the result of many hours and one big headache. :(
Furthermore, I am not sure if this matters or not...I am looking into using Drumbeat to eventually db integrate and create these pages dynamically.[nbsp][nbsp]I am completely in the dark about that process but maybe you are not and this will factor into the advice you bestow.[nbsp][nbsp]:)

A side problem...on the &quot;getaway&quot; section I have a background in the left section.[nbsp][nbsp]It does not show on Netscape.[nbsp][nbsp]Any suggestions there?

Thank you!!!!

Rain
02-08-2000, 02:18 AM
try it with the DOT COM![nbsp][nbsp]http://nurturethis.com/tabletestbms2.htm
sorry...

&quot;Long time listener, first time caller&quot;
VERY silly question, how do you get it to say Member Site Owner?[nbsp][nbsp]-that title better reflects my status :)

ukliam
03-02-2000, 05:46 AM
OK I am having the same trouble, mine works fine in IE but in Nav the table just screws up totally any suggestions???

<html>

<head>
<meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=windows-1252&quot;>
<meta http-equiv=&quot;Content-Language&quot; content=&quot;en-gb&quot;>
<meta name=&quot;GENERATOR&quot; content=&quot;Microsoft FrontPage 4.0&quot;>
<meta name=&quot;ProgId&quot; content=&quot;FrontPage.Editor.Document&quot;>
<title>Shared Left Border</title>
<meta name=&quot;Microsoft Theme&quot; content=&quot;lciweb 1111, default&quot;>
</head>

<body topmargin=&quot;0&quot; leftmargin=&quot;0&quot;>

<div align=&quot;left&quot;>
[nbsp][nbsp]<table border=&quot;0&quot; cellspacing=&quot;0&quot; background=&quot;border.gif&quot; height=&quot;4&quot;>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;24&quot; valign=&quot;middle&quot;><font face=&quot;Arial&quot; size=&quot;3&quot; color=&quot;#FFFFFF&quot;>&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp ;&amp;nbsp;&amp;nbsp;&amp;nbsp;-&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp ;&amp;nbsp;&amp;nbsp;&amp;nbsp;
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</font></td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;24&quot; valign=&quot;middle&quot;>&amp;nbsp;</td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;24&quot; valign=&quot;middle&quot;>&amp;nbsp;</td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;24&quot; valign=&quot;middle&quot;>&amp;nbsp;</td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;25&quot; valign=&quot;middle&quot;><font color=&quot;#FFFFFF&quot; face=&quot;Arial&quot; size=&quot;3&quot;><a style=&quot;font-family: Arial; color: #FFFFFF&quot;>&amp;nbsp;
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</a><a style=&quot;font-family: Arial; color: #FFFFFF&quot; href=&quot;../index.html&quot;>Home</a></font></td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;27&quot; valign=&quot;middle&quot;><font color=&quot;#FFFFFF&quot; face=&quot;Arial&quot; size=&quot;3&quot;><a style=&quot;font-family: Arial; color: #FFFFFF&quot;>&amp;nbsp;
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</a><a style=&quot;font-family: Arial; color: #FFFFFF&quot; href=&quot;../info.htm&quot;>Information</a></font></td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;25&quot; valign=&quot;middle&quot;><font color=&quot;#FFFFFF&quot; face=&quot;Arial&quot; size=&quot;3&quot;><a style=&quot;font-family: Arial; color: #FFFFFF&quot;>&amp;nbsp;
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</a><a style=&quot;font-family: Arial; color: #FFFFFF&quot; href=&quot;../news.htm&quot;>News</a></font></td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;26&quot; valign=&quot;middle&quot;><font color=&quot;#FFFFFF&quot; face=&quot;Arial&quot; size=&quot;3&quot;>&amp;nbsp;
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<a href=&quot;../ubbcgi/Ultimate.cgi&quot;>LCI Talk</a></font></td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;26&quot; valign=&quot;middle&quot;><font color=&quot;#FFFFFF&quot; face=&quot;Arial&quot; size=&quot;3&quot;><a style=&quot;font-family: Arial; color: #FFFFFF&quot;>&amp;nbsp;
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</a><a style=&quot;font-family: Arial; color: #FFFFFF&quot; href=&quot;../games.htm&quot;>Games</a></font></td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;25&quot; valign=&quot;middle&quot;><font color=&quot;#FFFFFF&quot; face=&quot;Arial&quot; size=&quot;3&quot;><a style=&quot;font-family: Arial; color: #FFFFFF&quot;>&amp;nbsp;
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</a><a style=&quot;font-family: Arial; color: #FFFFFF&quot; href=&quot;../links.htm&quot;>Links</a></font></td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;26&quot; valign=&quot;middle&quot;><font color=&quot;#FFFFFF&quot; face=&quot;Arial&quot; size=&quot;3&quot;>&amp;nbsp;
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<a href=&quot;../problempage.htm&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]Dear Diane</a></font></td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;26&quot; valign=&quot;middle&quot;><font color=&quot;#FFFFFF&quot; face=&quot;Arial&quot; size=&quot;3&quot;><a style=&quot;font-family: Arial; color: #FFFFFF&quot;>&amp;nbsp;
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]</a><a style=&quot;font-family: Arial; color: #FFFFFF&quot; href=&quot;../contacts.htm&quot;>Contact
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]us</a></font></td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;25&quot; valign=&quot;middle&quot;><font color=&quot;#FFFFFF&quot; face=&quot;Arial&quot; size=&quot;3&quot;>&amp;nbsp;
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<a href=&quot;../other.htm&quot;>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]Other</a></font></td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;11&quot; valign=&quot;middle&quot;><font size=&quot;4&quot;>&amp;nbsp;</font></td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;4&quot; valign=&quot;middle&quot;><font size=&quot;4&quot;>&amp;nbsp;</font></td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;4&quot; valign=&quot;middle&quot;>&amp;nbsp;</td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;4&quot; valign=&quot;middle&quot;>&amp;nbsp;</td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp][nbsp][nbsp]<tr>
[nbsp][nbsp][nbsp][nbsp][nbsp][nbsp]<td align=&quot;left&quot; height=&quot;1&quot; valign=&quot;middle&quot;><font size=&quot;3&quot;>&amp;nbsp;</font></td>
[nbsp][nbsp][nbsp][nbsp]</tr>
[nbsp][nbsp]</table>
</div>

</body>

</html>

Dan Kaplan
03-02-2000, 11:38 AM
Can we see the page in question?