|
The source code is presented in two ways.
Use whichever is easiest for you. |
<html>
<head>
<script language="JavaScript"><!--
function P(url,h,w) { // (url,height,width)
var p = "height=" + h + ",width=" + w + ",scrollbars=yes";
window.open(url,"",p);
} // -->
</script>
</head>
<body>
<IMG align="right" SRC="imagemap.gif" HEIGHT="218" WIDTH="326" ALT="imagemap" usemap="#imagemap.gif" border="0">
<map name="imagemap.gif">
<area shape="circle" coords="81,63,55"
href="javascript:P('this.html',100,500)" alt="This">
<area shape="rect" coords="164,1,325,90"
href="javascript:P('other.html',200,333)" alt="Other">
<area shape="circle" coords="244,150,55"
href="javascript:P('that.html',175,100)" alt="That">
</map>
</body>
</html>