<!--
function jumpToPage() {
  var idx = document.jumpForm.jumpBox.selectedIndex;
  var linkHref = document.jumpForm.jumpBox.options[idx].value;

  if(linkHref != "") {
    top.location.href = linkHref;
  }
}

function showHover(imgName,hoverOn) {
  if(hoverOn != true) {
    document.images[imgName].src = "/images/" + imgName + ".gif";
  } else {
    document.images[imgName].src = "/images/" + imgName + "_h.gif";
  }  

  return true;
}

function showImg(imgName,imgExt) {

  document.images[imgName].src = "/images/" + imgName + imgExt;

  return true;
}

function loadImg() {
  if (document.images) {
    if (typeof document.imgLoader == 'undefined') {
      document.imgLoader = new Object(); 
    }
    document.imgLoader.loadedImages = new Array();
    var argLength = loadImg.arguments.length;
    for (arg=0; arg < argLength; arg++) {
      document.imgLoader.loadedImages[arg] = new Image();
      document.imgLoader.loadedImages[arg].src = loadImg.arguments[arg];
    }
  }
}

//-->

