simpleMap = new function() {
	
	var map;
	
	this.initialize = function(lat, lng, zoom, mapId, isSmall) {
		if (mapId == undefined) {
			mapId = "map";	
		}
		if (isSmall == undefined) {
			isSmall = false;	
		}
		if (GBrowserIsCompatible()) {
			map = new GMap2(document.getElementById(mapId));
			map.setCenter(new GLatLng(lat,lng), zoom);
			map.addControl(new GLargeMapControl3D ());
			
			//if (isSmall == false) {
			//	map.addControl(new GMapTypeControl());
			//}
			//map.addControl(new GOverviewMapControl());
			map.setMapType(G_SATELLITE_MAP);
		}
	}	
	
	this.getMap = function() {
		return map;
	}
}