I've been tasked with figuring out what is wrong with our website. The links on the left side of the page do not seem to work with numerous browsers such as Firefox and Mozilla, but they work fine with Microsoft IE. The links are in a table, and the cell of the table is designed to change colors upon mouse-over. A sample table is included below. Can anyone explain to me WHY this would not work with the other browsers, and more importantly, how do I fix the problem? Any help would be GREATLY appreciated.
<TABLE WIDTH=100% BGCOLOR=orange BORDER=1 BORDERCOLOR=dimgray>
<TH COLSPAN=1 ALIGN=center BGCOLOR=white> <FONT SIZE=+2 COLOR=black> LINKS </FONT> </TH>
<TR> <TD BGCOLOR=red ALIGN=center WIDTH=100% onMouseOver="style.backgroundColor='red'; window.status='WPHOA main page'; return true;" onMouseOut="style.backgroundColor='red'; window.status = ''; return true;"><FONT COLOR=white> HOME </TD> </TR>
<TR> <A HREF=rules.html><TD BGCOLOR=orange ALIGN=center WIDTH=100% onMouseOver="style.backgroundColor='dimgray'; window.status='Download applicable rulebooks'; return true;" onMouseOut="style.backgroundColor='orange'; window.status = ''; return true;"><FONT COLOR=blue> The Rules </TD></A> </TR>
<TR> <A HREF=become_ref.html><TD ALIGN=center WIDTH=100% onMouseOver="style.backgroundColor='dimgray'; window.status='Learn what you need to do to become an official'; return true;" onMouseOut="style.backgroundColor='orange'; window.status = ''; return true;"><FONT COLOR=blue> Become an Official </TD></A> </TR>
<TR> <TD ALIGN=center>
<TABLE WIDTH=100% BGCOLOR=white BORDER=0 onMouseOver="style.backgroundColor='dimgray'; window.status='You must sign in to visit the Members area!'; return true;" onMouseOut="style.backgroundColor='white'; window.status = ''; return true;">
<A HREF=members/index.html>
<TR> <TD ALIGN=left> <IMG ALIGN=left SRC="images/misc/whistle.gif" width="32" height="26">
<TD ALIGN=center> </TD>
<TD ALIGN=right> <IMG ALIGN=right SRC="images/misc/whistle.gif" width="32" height="26"></TD>
</TR>
<TH COLSPAN=3><FONT SIZE=+2 COLOR=red>Members<BR><FONT COLOR=blue><U>SIGN IN</U></TH>
</A>
</TABLE>
</TD> </TR>
</TABLE>
Please help!
<TABLE WIDTH=100% BGCOLOR=orange BORDER=1 BORDERCOLOR=dimgray>
<TH COLSPAN=1 ALIGN=center BGCOLOR=white> <FONT SIZE=+2 COLOR=black> LINKS </FONT> </TH>
<TR> <TD BGCOLOR=red ALIGN=center WIDTH=100% onMouseOver="style.backgroundColor='red'; window.status='WPHOA main page'; return true;" onMouseOut="style.backgroundColor='red'; window.status = ''; return true;"><FONT COLOR=white> HOME </TD> </TR>
<TR> <A HREF=rules.html><TD BGCOLOR=orange ALIGN=center WIDTH=100% onMouseOver="style.backgroundColor='dimgray'; window.status='Download applicable rulebooks'; return true;" onMouseOut="style.backgroundColor='orange'; window.status = ''; return true;"><FONT COLOR=blue> The Rules </TD></A> </TR>
<TR> <A HREF=become_ref.html><TD ALIGN=center WIDTH=100% onMouseOver="style.backgroundColor='dimgray'; window.status='Learn what you need to do to become an official'; return true;" onMouseOut="style.backgroundColor='orange'; window.status = ''; return true;"><FONT COLOR=blue> Become an Official </TD></A> </TR>
<TR> <TD ALIGN=center>
<TABLE WIDTH=100% BGCOLOR=white BORDER=0 onMouseOver="style.backgroundColor='dimgray'; window.status='You must sign in to visit the Members area!'; return true;" onMouseOut="style.backgroundColor='white'; window.status = ''; return true;">
<A HREF=members/index.html>
<TR> <TD ALIGN=left> <IMG ALIGN=left SRC="images/misc/whistle.gif" width="32" height="26">
<TD ALIGN=center> </TD>
<TD ALIGN=right> <IMG ALIGN=right SRC="images/misc/whistle.gif" width="32" height="26"></TD>
</TR>
<TH COLSPAN=3><FONT SIZE=+2 COLOR=red>Members<BR><FONT COLOR=blue><U>SIGN IN</U></TH>
</A>
</TABLE>
</TD> </TR>
</TABLE>
Please help!