<!--
function showMap(width, height, lat, lng, addMarkerOnCoords, zoom, kml, descr){
	if (GBrowserIsCompatible()) {
    	var map = new GMap2(document.getElementById("map"), { size: new GSize(width, height) } );
		var latlng = new GLatLng(lat,lng);

		map.setCenter(latlng, zoom);
		
		var customUI = map.getDefaultUI();
		customUI.zoom = {};
        customUI.controls = {};
        customUI.maptypes.normal = true;
        customUI.maptypes.hybrid = false;
        customUI.zoom.doubleclick = false;
        customUI.zoom.scrollwheel = false;
		customUI.controls.scalecontrol = false;
        customUI.controls.smallzoomcontrol3d = true;
        customUI.controls.menumaptypecontrol = false;		
		map.setUI(customUI);
		
		if (kml!=null){
			geoXml = new GGeoXml(kml);
			map.addOverlay(geoXml);
		}
		
		if (addMarkerOnCoords) {
			var marker = new GMarker(latlng);
			map.addOverlay(marker);
		}
		
		if (descr != null)
			marker.openInfoWindowHtml(descr);
  }
}
-->
