var address_ = 'Riga, Alberta 7';
var title_ = 'Rīga, Alberta iela 7 - Viesturdarzs';
function initialize() {
      if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map_canvas"));
		var mapTypeControl = new GMapTypeControl();
		map.removeControl(mapTypeControl);
		var geocoder =  new GClientGeocoder();
		geocoder.getLatLng(
			address_,
			function(point) {
				if (!point) {
					alert(address_ + " not found");
				} else {

					var marker = new GMarker(point, {title: title_});
					point['x'] = point['x']-20;
					point['y'] = point['y']-20;
					map.setCenter(point, 15);
					map.addOverlay(marker);

		      }
		    }
		  );
	}
}