| Rectangles: x,y,x,y | Using the x,y coordinates of the top left and bottom right corners of the area you want to be designated as a hot area. |
| Circles: x,y,r | Using the x,y coordinate of the centerpoint and the radius in pixel measurement of the area you want to be designated as a hot area. |
| Polygons: x,y,x,y,x,y, (etc) | Using the x,y coordinates of each point of the polygon, working around the area in the same direction (clockwise, or counter-clockwise) without crisscrossing over your pathway. |

|
<CENTER> <MAP NAME="atsmap"> <AREA SHAPE="rect" COORDS="14,4,124,84" HREF="home.html" TARGET="main"> <AREA SHAPE="circle" COORDS="203,44,40" HREF="aboutus.html" TARGET="main"> <AREA SHAPE="polygon" COORDS="326,8,371,23,368,50,360,70,342,80,326,80,295,71,281,56,302,60,310, 58,324,40" HREF="orderform.html" TARGET="_parent"> </MAP> <IMG SRC="atsmap.gif" WIDTH=391 HEIGHT=90 USEMAP="#atsmap" BORDER="0"> </CENTER> |
|
<CENTER> <MAP NAME="atsmap"> <AREA SHAPE="rect" COORDS="14,4,124,84" HREF="index.html"> <AREA SHAPE="circle" COORDS="203,44,40" HREF="index2.html"> <AREA SHAPE="polygon" COORDS="326,8,371,23,368,50,360,70,342,80,326,80,295,71,281,56,302,60,310, 58,324,40" HREF="orderform.html" TARGET="_parent"> </MAP> <IMG SRC="atsmap.gif" WIDTH=391 HEIGHT=90 USEMAP="#atsmap" BORDER="0"> </CENTER> |
|
<HTML> <HEAD> <TITLE>Adventure Travel Service</TITLE> </HEAD> <FRAMESET COLS="118,*" FRAMEBORDER=0 BORDER=0 NORESIZE FRAMESPACING="0"> <FRAMESET ROWS="100%,*"> <FRAME NAME="buttons" SRC="buttons.html" SCROLLING="no" MARGINWIDTH="7" MARGINHEIGHT="10"> </FRAMESET> <FRAMESET ROWS="100%"> <FRAME NAME="main" SRC="aboutus.html" MARGINWIDTH="5" MARGINHEIGHT="10"> </FRAMESET> </FRAMESET> <BASE TARGET="_top"> </HTML> |
|
|
|