
<!--

browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);

        if (browserVer >= 3) version = "n3";
        else version = "n2";
        if (version == "n3")         {
  
        siteon = new Image(40, 204);
        siteon.src = "images/home/SiteMapM.jpg";
        siteoff = new Image(40, 204);
        siteoff.src = "images/home/SiteMap.jpg";

		contacton = new Image(33, 204);
        contacton.src = "images/home/ContactUsM.jpg";
        contactoff = new Image(33, 204);
        contactoff.src = "images/home/ContactUs.jpg";

		productson = new Image(34, 204);
        productson.src = "images/home/ProductsM.jpg";
        productsoff = new Image(34, 204);
        productsoff.src = "images/home/Products.jpg";
		
		newson = new Image(61, 49);
        newson.src = "images/home/NewsM.jpg";
        newsoff = new Image(61, 49);
        newsoff.src = "images/home/News.jpg";

		abouton = new Image(32, 204);
        abouton.src = "images/home/AboutUsM.jpg";
        aboutoff = new Image(32, 204);
        aboutoff.src = "images/home/AboutUs.jpg";
		
		resouron = new Image(33, 204);
        resouron.src = "images/home/ResourcesM.jpg";
        resouroff = new Image(33, 204);
        resouroff.src = "images/home/Resources.jpg";
		
		gobuttonon = new Image(36, 32);
        gobuttonon.src = "images/home/GoButtonM.jpg";
        gobuttonoff = new Image(36, 32);
        gobuttonoff.src = "images/home/GoButton.jpg";

}

function On(imgName) {

        if (version == "n3") {

        imgOn = eval(imgName + "on.src");

        document [imgName].src = imgOn;

        }

}


function Off(imgName) {

        if (version == "n3") {

        imgOff = eval(imgName + "off.src");

       document [imgName].src = imgOff;

       }

}

	// Check to see if Category is Blank - alert user if blank and focus
	function validateForm(){
	categoryChoice = productFinder.category.selectedIndex
	if (productFinder.category.options[categoryChoice].value==""){
	alert("Please select a category")
	productFinder.category.focus()
	return false;
	}
	return true;
	} 

// -->

