	
	//var mapAddress = '22722+Avenida+Empresa,+Rancho+Santa+Margarita%2c+CA+926882150';
	function showDirections()
	{
		//document.all.divDirectionsTo.style.display = 'inline';
		//document.all.divDirectionsFrom.style.display = 'none';
		document.all.divDirections.className = 'DirectionsShow';
		document.all.divMap.style.display = 'none';
	}
	function ShowMap()
	{
		//document.all.divDirectionsTo.style.display = 'inline';
		//document.all.divDirectionsFrom.style.display = 'none';
		document.all.divDirections.className = 'directionsHidden';
		document.all.divMap.style.display = 'inline';
	}
	function validateMap(Source)
	{
		/*
		if (document.all.googleAddress.value.length <= 0)
		{
			alert('Please enter a valid address.');
			return false;
		}
		*/
		if (document.all.txtCityState.value.length <= 0)
		{
			alert('Please enter a valid City and State.');
			return false;
		}
		showGoogleDirections(Source);
	}
	function showGoogleDirections(Source)
	{
		var mapAddress=document.getElementById("hdn1").value;
		//alert(mapAddress);
		var uri = "";
		// Source = 1: To directions
		if (Source==1)
		{
			uri = "http://maps.google.com/maps?saddr=" + document.all.txtaddress.value + "%2c+" + document.all.txtCityState.value + "&daddr=" + mapAddress;
		}
		else
		{
		// Source = 2: From directions
			uri = "http://maps.google.com/maps?daddr=" + document.all.txtaddress.value + "%2c+" + document.all.txtCityState.value + "&saddr=" + mapAddress;
		}
		uri = "http://www.ll247.com/go.aspx?site=437&ver=1.0&act=getmapdirections&cat=profile&cs=2&cid=4357ec03-ae8b-4c09-be7d-e1e9bc2ea8f8&sid=007c5226-64fd-4899-b900-f6da12d881a3&step=1&to=" + escape(uri);
		window.open(uri, "googlemap");
	}
	