// Written by: Debbie Whitcomb
// Last Updated: August 25, 2004

// $Author: whitcomb $ 
// $Revision: 1.2 $ 
if (document.images) {
  // create "on" array and populate with Image objects
  var onImgArray = new Array();
  onImgArray["InteractiveMap"] = new Image();
  // Set URLs for the "on" images
  onImgArray["InteractiveMap"].src = "/images/MapHighlightRed.png";

  // create "off" array and populate with Image objects
  var offImgArray = new Array();
  offImgArray["InteractiveMap"] = new Image();
  // Set URLs for the "off" images
  offImgArray["InteractiveMap"].src = "/images/MapHighlightBlue.png";
}

function imageOn(imgName) {
  if (document.images) {
    document.images[imgName].src = onImgArray[imgName].src;
  }
}

function imageOff(imgName) {
  if (document.images) {
    document.images[imgName].src = offImgArray[imgName].src;
  }
}

function setMsg(msg) {
  window.status = msg;
  return true;
}

