    //<![CDATA[
	
	var map;
	
    function gmap_load() {
		if (GBrowserIsCompatible()) {
			map = new GMap2(document.getElementById("googlemap"));
			map.setCenter(new GLatLng(26.198171,-98.233207), 14);
			map.addControl(new GSmallMapControl());
			var point = new GLatLng(26.198171,-98.233207);
			
			marker = new GMarker(point);
			map.addOverlay(marker);
			marker.openInfoWindowHtml("<strong>Texas Border Business</strong><br/>614 S. 12th Street<br/>McAllen, TX 78501<br/>Phone: (956) 451-4585<br/>Fax: 1-888-254-3341<p><input type=\"text\" name=\"from_address\" id=\"from_address\" /><br/><a onclick=\"getDirections('614 S. 12th Street McAllen, TX 78501',$('from_address').value);return false;\" href=\"#\">Get Directions</a></p>");			
			
		}
    }
	
function getDirections(from,to) {
	
	if (to == "") {
		alert("Please enter a departure address!");
		return;
	}
	
	directionsPanel = document.getElementById("TravelDirections");
	directions = new GDirections(map,directionsPanel);
	directions.load(to + " to " + from);
}
    //]]>