function mapStart(address, title)  
{  
	if(GBrowserIsCompatible())
	{  
		var geo = new GClientGeocoder();
		geo.getLatLng(address,function(point)
		{  
			if (!point)  
			{  
			}  
			else  
			{  
				var map = new GMap2(document.getElementById("gmap"));  
				map.setCenter(point, 15);  
				map.addControl(new GLargeMapControl());
				map.addControl(new GScaleControl()); 
				
				var icon = new GIcon();
				icon.image='http://maps.google.com/mapfiles/kml/pal3/icon52.png';
				icon.shadow='';
				icon.iconSize=new GSize(32,32);
				icon.iconAnchor=new GPoint(16,16);
				icon.infoWindowAnchor=new GPoint(16,16);
				
				var marker = new GMarker(point,{icon: icon, title: address});
				map.addOverlay(marker);
				marker.openInfoWindowHtml(title);
			}  
		});  
    }  
}  
