    	
    		var map = null;
    		var geocoder = null;
		function initialize() {if (GBrowserIsCompatible()) {
      // Create and Center a Map
    		var map = new GMap2(document.getElementById("map_canvas"));
    		map.setCenter(new GLatLng(43.7014593,-73.9879057), 13);
            var mapControl = new GSmallMapControl();
    	    var topRight = new GControlPosition(G_ANCHOR_TOP_RIGHT, new GSize(10,10));
    	    map.addControl(mapControl, topRight);
    	    var mapTypeControl = new GMapTypeControl();
    	    var topLeft = new GControlPosition(G_ANCHOR_TOP_LEFT, new GSize(10,10));
    	    map.addControl(mapTypeControl, topLeft);
    	    map.removeMapType(G_HYBRID_MAP);
		    map.addMapType(G_PHYSICAL_MAP);
    // bind a search control to the map, suppress result list
    map.addControl(new google.maps.LocalSearch(), new GControlPosition(G_ANCHOR_BOTTOM_RIGHT, new GSize(10,20)));
        	map.openInfoWindow(map.getCenter(),document.createTextNode("Cut & Paste Property Address (Street, City, State) in the Search Box below"),noCloseOnClick = "true");
			geocoder = new GClientGeocoder();
 			localSearch.setCenterPoint("North Creek, NY");}}
 		 	

