|
I want to make one image, each with its own hotspot. Each hotspot when clicked, opens a new browser window that is SIZED depending on how I define it to be in the code.
Here is an example of an image with hotspots. How do I add the code to make those hotspots open a SIZED window (lets say 500 pixels x 500 pixels?)
<img src="sidebarhome.jpg" width="165" height="113" border="0" usemap="#foo" href="makedonations.htm" target="_blank">
<map name="foo">
<area shape="rect" coords="2,13,163,58" href="ceo_message.htm" target="_blank" alt="In these pages you'll learn more about the CSO Program.">
<area shape="rect" coords="3,63,164,86" href="csoblog.htm" target="_blank" alt="Visit our blog and discover what we're doing next.">
</map>
|