// JavaScript Document
function showResults() {
	if (validate("z",true,$("#fldZipCode").val(),"fldZipCode","")) {
		var url = "/data/get-locator-listings.aspx?zip="+encodeURIComponent($("#fldZipCode").val())+"&radius="+encodeURIComponent($("#fldRadius").val());
		Shadowbox.open({ player: 'iframe', content:url, height:600, width:850 });
	} else {
		alert("Please enter a valid zip code.");
	}
}

function showResultsCanada() {
	var url = "/data/get-locator-listing-country.aspx?country=CA";
	Shadowbox.open({ player: 'iframe', content: url, height: 600, width: 850 });

}
