GESCHAFFT!
Hier ist die Lösung!
(und wie der Absatz reingekommen ist, weiss ich auch nicht...)
Viele Grüsse und DANKE!
Joschan
<script type="text/javascript">
function scroll()
{
variable = self.location.href.split("?");
posx = variable[1];
posy = variable[2];
window.scrollTo(posx-200,posy-200);
}
</script>
<script type="text/javascript">
function positionieren(id)
{
variable = self.location.href.split("?");
posx = variable[1]-5;
posy = variable[2]-(-45);
document.getElementById(id).style.left = posx+"px" ;
document.getElementById(id).style.top = posy+"px" ;
}
</script>
</HEAD>
<BODY onLoad="scroll()">
<MAP NAME="bgesamt">
...
</MAP>
<span class="smallfont" style="position: absolute; left: 0px;
top: 50px">
<IMG SRC="bgesamt.jpg" ALIGN="RIGHT"
USEMAP="#bgesamt" ISMAP>
</span>
<img src="rechteck.gif" border="0" id="bild" style="position:
absolute; z-index: 1; filter:alpha(opacity=50,style=0)"
onload="positionieren('bild')"></span>
</BODY>
</HTML>