<!--

// Detect if browser is Netscape 3 + or IE 4 +.
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
    if ((bName == "Netscape" && bVer >= 3) || 
        (bName == "Microsoft Internet Explorer" && bVer >= 4)) br = "n3"; 
    else br = "n2";

// Create image objects, preload all active and inactive images.
    if (br== "n3") { 
	img15on = new Image();
	img15on.src = "http://www.stealth.com/nav/contact_on.gif";

	img15off = new Image();
	img15off.src = "http://www.stealth.com/nav/contact.gif";
    }
// Function to "activate" images.
function imgAct(imgName) {
    if (br == "n3") {
    document[imgName].src = eval(imgName + "on.src");
    }
}
// Function to "deactivate" images.
function imgInact(imgName) {
    if (br == "n3") {
    document[imgName].src = eval(imgName + "off.src");
    }
}
// -->

<!--

   NS4 = (document.layers);
   IE4 = (document.all);
  ver4 = (NS4 || IE4);   
 isBlueberry = (navigator.appVersion.indexOf("Mac") != -1);
  isPC = (navigator.appVersion.indexOf("Win") != -1);
isCool = (navigator.appVersion.indexOf("X11") != -1); 
isMenu = (NS4 || (IE4 && !isBlueberry));

function popUp(){return};
function popDown(){return};
function startIt(){return};

if (!ver4) event = null;

lastButton = null;
curButton = null;

//-->