/*
    MAP GEOCODE FUNCTIONS
    --------------------------------------
    Copyright 2006(c)
    HDProtech
    5959 Corporate Drive, Suite 3015
    Houston, Texas 77036
*/

    var geocoder = new GClientGeocoder();

    /* ********************************************************************** */
    /* Geocoding functions to locate a specified address / Forward Geocoding  */
    /* ********************************************************************** */
    function locateAddress() {
        var address = document.getElementById("address").value;
        try{
            geocoder.getLatLng( address, function(point) {
                    if (!point) {
                        alert("Address: " + address + " not found!");
                    } else {
                        map.setCenter(point, 15);
                        var marker = new GMarker(point);
                        map.addOverlay(marker);
                        marker.openInfoWindowHtml(address);                        
                    }
                }
            );            

        } catch (err) {
            alert("Error geocoding address.");
        }
        resetAddress();
    }

    function resetAddress(){
        document.getElementById("address").value = "";
    }
    /* ********************************************************************** */