Thomas:
Consider this code -
<div style="position: absolute; z-index: 1; left:57px; top:155px"
id="layer2">
<map name="FPMap0">
<area href="new_page_6.htm" shape="rect" coords="92, 111, 218, 218">
</map>
<img border="0" src="../blah.jpg" width="300" height="301"
usemap="#FPMap0"></div>
Note the layer's position, and the coordinates of the hotspot.
Then look here -
<div style="position: absolute; z-index: 1; left:438px; top:158px"
id="layer2">
<map name="FPMap0">
<area href="new_page_6.htm" shape="rect" coords="92, 111, 218, 218">
</map>
<img border="0" src="../blah.jpg" width="300" height="301"
usemap="#FPMap0"></div>
Again, note the layer's position and that of the hotspot. The hotspot's
coordinates are offsets from the current position of the image, regardless
of what that position is.
<map name="FPMap0">
<area href="new_page_6.htm" shape="rect" coords="92, 111, 218, 218">
</map>
<img border="0" src="../blah.jpg" width="300" height="301" usemap="#FPMap0"
style="position:absolute; left:357; top:173">
Note that this is true even when I position the image directly.