I don't know what javascript code you are using so I don't know if the link should be around the image map or the image, but the way you have it now is wrong. Your first open the map, then the link, but you close the map first and the link last:
HTML Code:
<map name="FPMap1">
<a href="javascript:doPic('Lanitech_Artwork/ba-gallery2.jpg',usemap='#FPMap1');">
<area target="_blank" href="ba-gallery2_small.htm" shape="rect" coords="211, 4, 358, 126">
<area target="_blank" coords="11, 7, 204, 6, 205, 138, 358, 140, 353, 483, 4, 483" shape="polygon" href="ba-gallery2_small.htm">
</map>
<img src="Lanitech_Artwork/ba-gallery2.jpg" width=55 height=72 border=0></a>
Your code should look like one of the following two:
HTML Code:
<a href="javascript:doPic('Lanitech_Artwork/ba-gallery2.jpg',usemap='#FPMap1');">
<map name="FPMap1">
<area target="_blank" href="ba-gallery2_small.htm" shape="rect" coords="211, 4, 358, 126">
<area target="_blank" coords="11, 7, 204, 6, 205, 138, 358, 140, 353, 483, 4, 483" shape="polygon" href="ba-gallery2_small.htm">
</map>
<img src="Lanitech_Artwork/ba-gallery2.jpg" width=55 height=72 border=0></a>
or
HTML Code:
<map name="FPMap1">
<area target="_blank" href="ba-gallery2_small.htm" shape="rect" coords="211, 4, 358, 126">
<area target="_blank" coords="11, 7, 204, 6, 205, 138, 358, 140, 353, 483, 4, 483" shape="polygon" href="ba-gallery2_small.htm">
</map>
<a href="javascript:doPic('Lanitech_Artwork/ba-gallery2.jpg',usemap='#FPMap1');"><img src="Lanitech_Artwork/ba-gallery2.jpg" width=55 height=72 border=0></a>
I'm guessing it's the second one.
Edit: To be more specific:
This is invalid: <aaa><bb> </aaa></bb>
This is valid: <aaa><bb> </bb></aaa>
Bookmarks