var map      = null;
var geocoder = null;

function initialize() {
	if (GBrowserIsCompatible()) {
		map = new GMap2(document.getElementById('box-google'));
		geocoder = new GClientGeocoder();
	}
	if (geocoder) {
		geocoder.getLatLng(mapsaddr,function(point){
			if (point) {
				var blueIcon = new GIcon(G_DEFAULT_ICON);
				blueIcon.image = "http://dev.mfe.com.br/img/maps/icon-maps.png";
				markerOptions = { icon:blueIcon };
				map.setCenter(point, 14);
				var marca = new GMarker(point, markerOptions);
				map.addOverlay(marca);
				marca.openInfoWindowHtml(mapshtml);
			}
		});
	}
}
