<!--
// Get the browser version and check it's capable of showing
// JavaScript
netscape = ((navigator.appName == "Netscape Navigator") && (parseInt(navigator.appVersion) >= 3 ));
ie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ));
browser = (netscape || ie4);

// If the browser's OK, set up the images
if (browser)
{
   CreateImages();
}

// Function to switch the image and set the status bar text
function ImgChange(imgDocID, imgObjName, message)
{
   if (browser)
   {
      document.images[imgDocID].src = eval(imgObjName + ".src");
      window.status = message;
   }

   return true;
}
//-->
