<!--


if (document.images)
{
 
 // Set up "on" images (show up onmouseover)
 pic1on= new Image();
 pic1on.src="../images/world-map-na-on.gif";  
 pic2on = new Image();
 pic2on.src="../images/world-map-la-on.gif";
 pic3on = new Image();
 pic3on.src="../images/world-map-eastern-on.gif";

 // Set "off" images (onmouseout)    
 picoff= new Image();
 picoff.src="../images/world-map-off.gif";

}

// Change the image
function changeImage(imgName,picobj)
{
  if (document.images)
  { 
	document.images[imgName].src= picobj.src;
  }
}

//-->
