function load() {

        var map = null;
        var geocoder = null;

        if (GBrowserIsCompatible()) {
                map = new GMap2(document.getElementById("map"));
                map.setCenter(new GLatLng(37.4419, -122.1419), 13);
                map.setMapType(G_HYBRID_MAP);
                geocoder = new GClientGeocoder();
                if (geocoder) {

                        geocoder.getLatLng(
                                '242 W 27th St, New York, NY 10001, USA',
                                function(point) {
                                        map.setCenter(point, 16);
                                        var marker = new GMarker(point);
                                        map.addOverlay(marker);
                                }
                        );
                }
        }
}

