<!--

// Swap objects to highlight the correct main navigation point
  //set the global variable to handle disabling the mouseover/out on the current page
var currentPage;

function hilite(imgID,imgName) {
  // handles the animation of the mouseOver
  //   imgID   - the tag name of the image to be replaced
  //   imgName - the image source name to be placed.

  if (browsertest) {
    if (currentPage!=imgID) {
        document.images[imgID].src = eval(imgName + ".src");
    }
  }
}

function openNewWindow(sUrl) {
  window.open(sUrl,null,"height=600,width=800,status=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes,scrollbars=yes");
}

function openPopUp(sUrl) {
  window.open(sUrl,null,"height=400,width=400,status=yes,toolbar=no,menubar=no,location=no");
}

function changeImgSrc(whichElement,whichValue) {
  document.getElementById(whichElement).src = '../assets/images/' + whichValue + '.gif';
}

//-->