var isIe =(navigator.userAgent.toLowerCase().search("msie") > -1)
var isFox =(navigator.userAgent.toLowerCase().search("firefox") > -1)
var isSaf =(navigator.userAgent.toLowerCase().search("safari") > -1)

var arTT = [
	{name:'fqc',title:"Quality Checked Certified Pre-Owned",copy:"To qualify for Certified Pre-Owned status, each used Ford must be less than six model years old and have fewer than 80,000 miles on the odometer. Then before we certify any Ford pre-owned vehicle, it must first pass a rigorous 169 point-by-point exam."},
	{name:'ql',title:"Quick Lane&reg;",copy:"Quick Lane&reg; provides the services your Ford car or truck needs most, performed by factory-trained experts using quality Motorcraft&reg; parts. You'll never need an appointment and you'll get service while you wait, even on evenings and weekends. "},
	{name:'boc',title:"Blue Oval Certified Dealership",copy:"Becoming Blue Oval Certified isn't a given, it's something a Ford dealership has to earn. It's about doing whatever it takes to make the customer's experience a pleasant one, whether they're coming in to buy or lease a new vehicle or just to get parts or service. It's all about complete customer service."},
	{name:'ltruck',title:"Light Truck",copy:"Ford offers a full line of light trucks that are just right for a wide variety of professional trade and personal use. "},
	{name:'rent',title:"Rental Car",copy:"For your convenience, certain Ford Dealership offer car rental services. "},
	{name:'cat',title:"CAT Certified Diesel",copy:"Ford Trucks with a CAT 3126E diesel engine are best serviced by a CAT-certified diesel Ford dealership."},
	{name:'cummins',title:"Cummins Certified Diesel",copy:"Ford trucks with a Cummins 5.9L ISB diesel engine are best serviced by a Cummins-certified diesel Ford dealership."},
	{name:'htruck',title:"Heavy Truck",copy:"Ford commercial trucks are tough and reliable and your local Ford Dealer knows how to service them best. "},
	{name:'tiredealer',title:"Dealers That Sell Tires",copy:"Need new tires or a tire repair? Look no further than your local Ford Dealership."},
	{name:'limo',title:"LimoCare",copy:"Ford Motor Company is the leader in the limousine & livery industry. We take great pride in providing the vehicles and services to meet the unique needs of the chauffeured transportation and professional vehicle industry. "},
	{name:'hev',title:"Escape Hybrid Certified Dealers",copy:"Escape Hybrid offers improved fuel economy and fewer pollutants than a conventional SUV, without the daily hassle of recharging an electric vehicle. "},
	{name:'bpnsls',title:"Business preferred Sales",copy:"Ford Business Preferred Network dealers understand the pace of business and they're specifically equipped to serve Ford business vehicles and their owners with extended hours, the latest technology, priority service, Ford Credit Commercial Lending Services' finance and lease programs and more." },
	{name:'bpnsvc',title:"Business preferred Service",copy:"Ford Business Preferred Network dealers understand the pace of business and they're specifically equipped to serve Ford business vehicles and their owners with extended hours, the latest technology, priority service, Ford Credit Commercial Lending Services' finance and lease programs and more." }
	];
		
		
function dealerTTbtm(sName, ele, evt) {
	var oTT = document.getElementById("btmTTarea");
	var nLeft = 54;
	var nH = 0;
	var imgRect = findPos_n(ele.getElementsByTagName("img")[0],false);
	var nC = (imgRect.r - imgRect.l)/2;
	var elePop, popRect;
	
	if (isIE)
		nLeft = 54;
	
	if (sName==0) {
		oTT.style.visibility = "hidden";return true;
	}
				
	for (var i=0; i<arTT.length;++i) {	
		if (sName==arTT[i].name) {
			document.getElementById("btmTTtitle").innerHTML = "<h6>" + arTT[i].title + "</h6>";
			document.getElementById("btmTTcontent").innerHTML = arTT[i].copy;
			popRect = findPos_n(oTT,true);
			nH = popRect.b-popRect.t;
					
			oTT.style.top = (imgRect.t-nH+3) + "px";
			oTT.style.left = (imgRect.l+nC-nLeft) + "px";
			oTT.style.visibility = "visible";
		}
	}
	//[curleft,curtop]
	//[rect.l,rect.t,rect.r,rect.b]
}

function dealerTTside(nId, ele) {
	var oTT = document.getElementById("sideTTarea");
	var nLeft = 22;
	var sName = document.getElementById("specialty").value;
	var eleRect = findPos_n(ele,false);
	var popRect, nH;
	if (isIE)
		nLeft = 22;
	
	if (nId==0) {
		oTT.style.visibility = "hidden";return true;
	}
		
	for (var i=0; i<arTT.length;++i) {	
		if (sName==arTT[i].name) {
			document.getElementById("sideTTtitle").innerHTML = "<h6>" + arTT[i].title + "</h6>";
			document.getElementById("sideTTcontent").innerHTML = arTT[i].copy;
			popRect = findPos_n(oTT,true);
			nH = (popRect.b-popRect.t);
			
			oTT.style.top = (eleRect.t-41) + "px";
			oTT.style.left = (eleRect.l+nLeft) + "px";
			
			oTT.style.visibility = "visible";
		}
	}
}


function getZip() {
	if (document.dealerSearch && escape(document.dealerSearch.zip.value).length==0) {
		document.dealerSearch.zip.value = oCookie.getSubCookieValue("FPI", "zip");
	}
}

function dealerSearch() {
	var sZip = document.getElementById("zip").value;

	if (sZip.length == 0 && document.getElementById("city").value == "" && document.getElementById("state").value == "") {
		document.getElementById("locateDealerCount").innerHTML = '<h6 class="error">Please enter a valid dealer name or zip code, or city and state.</h6>';
	}
	else if (sZip.length == 0 && (document.getElementById("city").value == "" || document.getElementById("state").value == "")) {
			document.getElementById("locateDealerCount").innerHTML = '<h6 class="error">Please enter a valid city and state.</h6>';
	}
	else {
		//if (isValidZip(sZip)) {
		//	oCookie.setSubCookieValue("FPI", "zip", sZip, 65);
		//}
		document.dealerSearch.submit();
	}	
}

