// JavaScript Document



function searchdealerzip(){

	var zip = document.getElementById("searchzip").value;

	

	if (zip=="ZIP CODE" || zip==""){ 

		return true; 

	} else {

		var url = document.getElementById("searchanchor").href;

		//alert ("locate dealer: " + url + "?id=" + zip);

		top.location.href = url + "?postal=" + zip;

		return false;

	}

}



function searchdealercity(){

	var city = document.getElementById("searchcity").value;

	

	if (city=="SEARCH CITY" || city==""){ 

		return true; 

	} else {

		var url = document.getElementById("searchanchor").href;

		//alert ("locate dealer: " + url + "?id=" + zip);

		top.location.href = url + "?city=" + city;

		return false;

	}

}



function cleartextbox1(){

	var textbox = document.getElementById("searchzip");

	if (textbox.value == "POSTAL CODE"){

		textbox.value = "";

	}

}

function cleartextbox2(){

	var textbox = document.getElementById("searchcity");

	if (textbox.value == "SEARCH CITY"){

		textbox.value = "";

	}

}





function popCoupon(){

	winstyle="height=593,width=500,status=no,toolbar=no,menubar=no,location=no,scrollbars=no";

	// This will popup the Upload window

	window.open("ECRwork.html","Coupon",winstyle);

}





function popGNGcontest(){

	winstyle="height=600,width=800,status=no,toolbar=no,menubar=no,location=no,scrollbars=no";

	// This will popup the Upload window

	window.open("GNGcontest.html","GNGcontest",winstyle);

}