// JavaScript Document
<!--// Changes an image and the status bar
function change(name, status) {
  // See if this browser supports images
  if (document.images) {
    // Change the images
    document.images[name].src =name + (status == "" ? "1.gif" : "2.gif");
  }
  // Change the window status
  window.status = status;
}
// Pre-loads the on images
function loadimages() {
// Get the URL we need to use
  var url = document.location.href;
  url = url.substring(0, url.lastIndexOf('/') + 1);
  // Parse through all the images in this document
  if (document.images)
  for (var i = 0; i < document.images.length; i++) {
    // Set the name of the image
    image = document.images[i].name;
    // Skip this image if does not have a name
    if (image != '') {
      // Set up the on images
      eval('var ' + image + 'on = new Image();');
      eval(image + 'on.src = "' + url + image + '2.gif";');
    }
  }
}
// -->
