I figured it out. This works:
<tr> <td><A href="main.html" target=MAIN> <IMG onmouseover="loadImage(this,sbA2);showStatus(alt);return true;" onmouseout=defaultStatus();loadImage(this,sbA1); alt="JSBSim Home" src="menu_sep_home_1.jpg" border=0></A></td> </tr>
<tr>
<td><A href="http://sourceforge.net/export/projnews.php?group_id=19399&limit=10&show_summaries=1" target=MAIN>
<IMG
onmouseover="loadImage(this,sbB2);showStatus(alt);return true;"
onmouseout=defaultStatus();loadImage(this,sbB1);
alt="Latest news about JSBSim"
src="menu_sep_news_2.jpg"
border=0></A></td>
</tr>
While this does not:
<tr> <td> <A href="main.html" target=MAIN> <IMG onmouseover="loadImage(this,sbA2);showStatus(alt);return true;" onmouseout=defaultStatus();loadImage(this,sbA1); alt="JSBSim Home" src="menu_sep_home_1.jpg" border=0></A> </td> </tr>
<tr>
<td>
<A href="http://sourceforge.net/export/projnews.php?group_id=19399&limit=10&show_summaries=1" target=MAIN>
<IMG
onmouseover="loadImage(this,sbB2);showStatus(alt);return true;"
onmouseout=defaultStatus();loadImage(this,sbB1);
alt="Latest news about JSBSim"
src="menu_sep_news_2.jpg"
border=0></A>
</td>
</tr>
The subtlety is that there can be no whitespace between the beginning of a data cell and the first element of the cell, nor can there be any whitespace between the last element in the cell and the close of the cell (i.e. with a </td>). In the second case, above, there is a carriage return after the opening <td>, and also before the closing </td>. This is, apparently, a no-no.
Jon
_______________________________________________ Flightgear-devel mailing list [EMAIL PROTECTED] http://mail.flightgear.org/mailman/listinfo/flightgear-devel