//browser detection
//mouse over code
        app = navigator.appName;
        ver = navigator.appVersion;
        mac = ver.indexOf("Macintosh") > 0;
        win = ver.indexOf("Win") > 0;
        vnum = parseFloat(ver);

     mouseOverOk = (((app == "Netscape") && (vnum >= 3 )) ||
            ((mac) && (app == "Microsoft Internet Explorer") && (vnum >= 3.01 )) ||
            ((win) && (app == "Microsoft Internet Explorer") && (vnum >= 4 ))) 

     if (mouseOverOk) 

             {
//Rollovers
  
  home_on = new Image();
  home_on.src = "/images/nav_home_on.gif";
  home_off = new Image();
  home_off.src = "/images/nav_home_off.gif";  
  
  about_on = new Image();
  about_on.src = "/images/nav_about_on.gif";
  about_off = new Image();
  about_off.src = "/images/nav_about_off.gif";  

  products_on = new Image();
  products_on.src = "/images/nav_products_on.gif";
  products_off = new Image();
  products_off.src = "/images/nav_products_off.gif";
 
  special_on = new Image();
  special_on.src = "/images/nav_special_on.gif";
  special_off = new Image();
  special_off.src = "/images/nav_special_off.gif";

  agents_on = new Image();
  agents_on.src = "/images/nav_agents_on.gif";
  agents_off = new Image();
  agents_off.src = "/images/nav_agents_off.gif";
  
  quote_on = new Image();
  quote_on.src = "/images/nav_quote_on.gif";
  quote_off = new Image();
  quote_off.src = "/images/nav_quote_off.gif";

  contact_on = new Image();
  contact_on.src = "/images/nav_contact_on.gif";
  contact_off = new Image();
  contact_off.src = "/images/nav_contact_off.gif";

}

function turnOn(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "_on.src");
  }
}

function turnOff(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "_off.src");
  }
}
function PopHelp(strURL,intWidth,intHeight){
	if (strURL != ""){
		helpWindow = window.open(strURL, "help","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,topmargin=0,resizable=0,width=" + intWidth + ",height=" + intHeight);
	}
}


function redirectProduct(id){
	strURL = "/products/product_detail.asp?id=" + id
	document.location.href = strURL;
}

