<!--  //This code
  function FillCarMake() {
    //alert("FillCarMake() called!!!!");

   var href = top.location.href;
    var lastSlash = href.lastIndexOf("/");
    href = href.substring(0, lastSlash);
    lastSlash = href.lastIndexOf("/");
    href = href.substring(lastSlash + 1, href.length);
    
    href = href.replace("_", " ");
    var makes = new String("Affordable Premiums,Individual Insurance,Business Insurance,Accident Insurance,Cancer Insurance,Disability Insurance,Health Insurance,Heart Stroke,Hospital Insurance,Life Insurance,Medical Insurance,Personal Consultation");
    myMake = new RegExp(href,"i"); // the i makes it case insensitive
    if(makes.match(myMake) != null)
    {
        //document.forms[0].elements["00N30000000i5Ly"].value = href;
        document.forms["ctl00"].elements["txtInsurance"].value = href;
    }
    else
    {
        document.forms["ctl00"].elements["txtInsurance"].value = "Benefits Consultation";
    }

  }
  
	
//-->