| <SCRIPT>
// Define the status line messages which we
will be using
// NOTE: ie, AlaskaStatus - the name Alaska is the same as an Image
Object name
var AlaskaStatus = "Alaska - Where Adventures Still Exist";
var CanadaStatus = "Canada - Land of Scenic Wonders";
var GreenlandStatus = "Greenland - Where Time Stands Still";
var USAStatus = "USA - The Land of Opportunity";
var MexicoStatus = "Mexico - Visit Aztec and Mayan Temples and
Sunny Beaches";
// Define & Pre-load our Images
// we are also making sure that there will be no browser compatibility
issues
if (document.images) {
var imgMap = new Image();
imgMap.src =
"images/map.gif";
var Alaska = new Image();
Alaska.src =
"images/alaska.gif";
var Canada = new Image();
Canada.src =
"images/canada.gif";
var Greenland = new Image();
Greenland.src =
"images/greenland.gif";
var USA = new Image();
USA.src =
"images/us.gif";
var Mexico = new Image();
Mexico.src =
"images/mexico.gif";
}
// This function "turns" on the
image, while also providing a status line message
function imgOn(imgName) {
// checking for "browser
compatibility"
if (document.images)
{
document.NoAm.src
= eval(imgName + ".src");
}
return window.status =
eval(imgName + "Status");
}
// This function "turns" off the
image & clears the status line message
function imgOff() {
if (document.images)
{
document.NoAm.src
= "images/map.gif";
}
window.status =
"";
}
</SCRIPT>
<BODY>
TITLE= "Alaska - Where Adventures Still Exist"
shows up as a tooltip on the mouseover
<IMG SRC="images/map.gif"
NAME="NoAm"
USEMAP="#MapName">
<MAP NAME="MapName">
<AREA SHAPE="rect"
COORDS="10,33,36,56"
HREF="images/alaska.gif"
onMouseOver="imgOn('Alaska');
return true;"
onMouseOut="imgOff()"
TITLE="Alaska - Where Adventures Still Exist">
<AREA SHAPE="rect"
COORDS="38,47,125,100"
HREF="images/canada.gif"
onMouseOver="imgOn('Canada');
return true;"
onMouseOut="imgOff()"
TITLE="Canada - Land of Scenic Wonders">
<AREA SHAPE="rect"
COORDS="92,3,134,46"
HREF="images/greenland.gif"
onMouseOver="imgOn('Greenland');
return true;"
onMouseOut="imgOff()"
TITLE= "Greenland - Where Time Stands Still">
<AREA SHAPE="rect"
COORDS="35,100,127,143"
HREF="images/us.gif"
onMouseOver="imgOn('USA');
return true;"
onMouseOut="imgOff()"
TITLE= "USA - The Land of Opportunity">
<AREA SHAPE="rect"
COORDS="51,151,108,181"
HREF="images/mexico.gif"
onMouseOver="imgOn('Mexico');
return true;"
onMouseOut="imgOff()"
TITLE= "Mexico - Visit Aztec and Mayan Temples and
Sunny Beaches">
</MAP> |