<script type="text/javascript">
function FensterAuf(file)
{
window.open(file,'window','width=250, height=250, scrollbars=no');
}
</script>
<html> <head> <title>Verweis-sensitive Grafiken definieren</title> </head> <body> <h1>Übersicht St.Leon-Rot</h1> <div> <map name="Gesamt">
<area shape="rect" coords="40,220,75,300" href="c:\tmp\scr.jpg" onclick="FensterAuf(this.href); return false;" title="SCR I">
<area shape="rect" coords="240,270,275,280" href="c:\tmp\bhkw.jpg" onclick="FensterAuf(this.href); return false;" title="BHKW">
</map> </div> <p><img src="c:\tmp\landkarte.jpg" width="400" height="565" usemap="#Gesamt"></p> </body> </html> |