// js found on masterpage

function DealerSearch(form){
	var zip = '?zip=';
	if (eval(validateZIP(document.getElementById('zip').value))) {
		zip += document.getElementById('zip').value;

		switch (form){
			case 1: //Contact a Dealer
				window.location.href = '/DealerSearch.aspx' + zip;
				break;
			case 2: //Request a Quote
				window.location.href = '/DealerContact.aspx' + zip + '&dealerID=&formID=2';
				break;
			case 3:	// Test Drive
				window.location.href = '/DealerContact.aspx' + zip + '&dealerID=&formID=3';
				break;				
		}
	}
}

function WriteDealer(DealerID) {
	window.location.href ='/DealerSearch.aspx?ContentID=' + DealerID;
}

function WriteDealerZip(Zip) {
	window.location.href = '/DealerSearch.aspx?zip=' + Zip;
}

function ViewDealerList (TagName, AnchorName) {
	var DealerList = document.getElementById(TagName)
	if (DealerList.style.display == 'none')
	{
		DealerList.style.display = 'inline';
		//AnchorName.innerText = 'Hide Dealers List'
        document.getElementById(AnchorName).innerText = 'Hide All Dealers List';
	}
	else
	{
		DealerList.style.display = 'none';
		//AnchorName.innerText = 'Show Dealers List';
        document.getElementById(AnchorName).innerText = 'View All Dealers List';
	}
}

//deprecated
function LoadFlash(){

	//var MainFlash = new SWFObject("Config/Templates/Skins/4/images/swf/en_mainflash.html", "MainFlash", "908", "408", "8", "#336699");
	//MainFlash.addVariable("lm", "7289");
	//MainFlash.write("MainFlash");

	//var PromotionsEvents = new SWFObject("Config/Templates/Skins/4/images/swf/en_promo.html", "PromotionsEvents", "680", "130", "8", "#336699");

	//PromotionsEvents.addVariable("lm", "7289");
	//PromotionsEvents.write("PromotionsEvents");					
	
    //var PromotionsEvents = new SWFObject("/Config/Templates/Skins/1/images/swf/en_promo.swf?lm=7289", "PromotionsEvents", "680", "130", "8", "#336699");
	
}		


