Thanks for the advise. I wasn't aware of a Validation program.
I've corrected all errors, but the problem still remains.
When I click the "Hot Link" in Firefox the Popup appears with the graphic.
When I click the "Hot Link" in IE8, I get the Popup but no Graphic.
The problem appears to be in Line 37.
It's driving me crazy
Can you help?
Thanks in anticipation.
The site is
www.mountainsideholdings.com/FAT/Page-2.html
[Code]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>FAT Race products</title>
<script language="JavaScript" type="text/javascript">
<!-- Begin
function popitup(url) {
newwindow=window.open(url,'name','height=600,width=600');
if (window.focus) {newwindow.focus()}
return false;
}
// End -->
<!-- Begin
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
//-->
</script>
</head>
<body>
<div>
<table width="900">
<tr valign="top" align="center">
<td >
<img src="Page02.jpg" alt="Page2" width="800" border="0" usemap="#Map3"/> </td>
</tr>
</table>
</div>
<map name="Map3" id="Map3">
<area shape="rect" coords="45,473,156,503" href="mailto:repengineers@bigpond.com" alt="email" />
<area shape="rect" coords="46,406,157,436" href="http://www.mountainsideholdings.com/FAT/Page-1.html" alt="Page-1" />
<area shape="rect" coords="199,154,287,248" onclick="return popitup('http://www.mountainsideholdings.com/FAT/Hammer1.jpg')" alt="Graphic1" />
</map>
</body>
</html>
[Code]