I think fishin4snook is correct. I viewed the page in NN and noticed the problem.
Are these graphics just simple rollovers? If so Front Page, like many other WYSIWYG editors, has added a great deal of unnecssary code to your page. Here's a more efficient way to do it:
**PLEASE NOTE: I wasn't sure the titles of the rollover versions of images so I simply added a "_over" to the end of the titles. You will have to change those names to the appropriate title.
Also, make sure the ALL the code within the <A HREF> tags in on one line. Otherwise the script will not work. Also, I eliminated the "lowsrc" versions within your <IMG> tags. These buttons are very small as is and a lowsrc isn't really necessary.
Hope this helps. Good Luck.
Cullen Cox
cullenc3@aol.com
Graphic Artist/Web Designer.
<html><head><title>New Page 3</title>
<base target="main">
<script language="JavaScript">
//This preloads the rollover images
alt01 = new Image();
alt01 src = "prodbut_over.gif";
alt02 = new Image();
alt02 src = "about_over.gif";
alt03 = new Image();
alt03 src = "infobut_over.gif";
alt04 = new Image();
alt04 src = "newsbut_over.gif";
alt05 = new Image();
alt05 src = "contbut_over.gif";
</script>
</head>
<body bgcolor="#000066">
<table border="0" cellspacing="1" width="100%" align="center">
<tr>
<td width="100%">
<a href="mscont2.htm" target="_self" onMouseOver="document.pic1.src='prodbutplain_over.gif'" onMouseOut="document.pic1.src='prodbutplain.gif'">
<img name="pic1" border="0" src="prodbutplain.gif" width="124" height="16"></a></td>
</tr>
<tr>
<td width="100%">
<a href="about.htm" onMouseOver="document.pic2.src='about_over.gif'" onMouseOut="document.pic2.src='aboutplain.gif'">
<img border="0" src="aboutplain.gif" name="pic2" width="124" height="16"></a></td>
</tr>
<tr>
<td width="100%">
<a href="inform.htm" onMouseOver="document.pic3.src='infobut_over.gif'" onMouseOut="document.pic3.src='infobutplain.gif'">
<img border="0" src="infobutplain.gif" name="pic3" width="124" height="16"></a></td>
</tr>
<tr>
<td width="100%">
<a href="new.htm" onMouseOver="document.pic4.src='newsbut_over.gif'" onMouseOut="document.pic4.src='prodbutplain.gif'">
<img border="0" src="newsbutplain.gif" name="pic4" width="124" height="16"></a></td>
</tr>
<tr>
<td width="100%">
<a href="contacts.htm" onMouseOver="document.pic5.src='contbut_over.gif'" onMouseOut="document.pic5.src='contbutplain.gif'">
<img border="0" src="contbutplain.gif" name="pic5" width="124" height="16"></a></td>
</tr>
</table>
</body>
</html>
[sig][/sig]