function MapEntreprise(lat, lng, nom, tel, fax, email, web) {
	var map;
	var centerLatitude = lat;
	var centerLongitude = lng; 
	var startZoom = 13;
	var markers;
	var highlightCircle;
	var currentMarker;
	var iconeVert = new GIcon();

	// Initialisation de la carte
	map = new GMap(document.getElementById("map2"));
	
	// Ajout des GMapTypeControl
	map.addControl(new GMapTypeControl());
	
	// Ajout des controles (zoom, etc.) en petite taille
	map.addControl(new GSmallMapControl());
	
	// Intialisation du centre de la carte et du zoom
	map.setCenter(new GLatLng(centerLatitude, centerLongitude), startZoom);
	
	// Supprime le choix de changer le type de carte (satellite, normale, etc.)
	map.removeMapType(G_HYBRID_MAP);
	map.removeMapType(G_SATELLITE_MAP);
	map.removeMapType(G_NORMAL_MAP);
	
	// Modification de la phrase du copyright
	var bounds = map.getBounds();
	//var copyright=GCopyright(1, bounds, 13, "", 13);
	
	var mentions = new GCopyrightCollection();
	var copyright = mentions.getCopyrights(bounds, 13);
	mentions.newcopyright = copyright;
	
	// Création du marker
	iconeVert.image = "images/vert.png";
	iconeVert.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
	iconeVert.iconSize = new GSize(12, 20);
	iconeVert.shadowSize = new GSize(22, 20);
	iconeVert.iconAnchor = new GPoint(6, 20);
	iconeVert.infoWindowAnchor = new GPoint(5, 1);
	
	var deselectCurrent = function() {};
	var point = new GLatLng(lat, lng);
	var marker = new GMarker(point,{icon: iconeVert, title: nom});

	var focusPoint = function() {
		deselectCurrent();
		marker.setImage("rouge.png");
		deselectCurrent = function() { marker.setImage("vert.png");}
		marker.openInfoWindowHtml("<h3 id=\"TitreBulleInfo\">" + nom + "</h3>" +
								  "<ul id=\"ListeBulleInfo\">" +
								  		"<li>Tel.   : " + tel + "</li>" +
										"<li>Fax    : " + fax + "</li>" +
										"<li>E-mail : " + email + "</li>" +
										"<li>Site Internet : " + web + "</li>" +
								  "</ul>");
		map.panTo(point);
		return false;
	}
	
	GEvent.addListener(marker, 'click', focusPoint);	
	GEvent.addListener(marker, 'mouseover', function() { marker.setImage("images/rouge.png"); });
	GEvent.addListener(marker, 'mouseout', function() { marker.setImage("images/vert.png"); });
	GEvent.addListener(marker, 'infowindowclose', function(){marker.setImage("images/vert.png");});	
	map.addOverlay(marker);
}





/*function GoogleMini(lat, lng, nom, tel, fax, email, web) {
	alert("lat : "+lat +" lng : " +lng);
	var map;
	var centerLatitude = lat;
	var centerLongitude = lng; 
	var startZoom = 13;
	var markers;
	var highlightCircle;
	var currentMarker;
	var iconeVert = new GIcon();
	
	iconeVert.image = "images/vert.png";
    iconeVert.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
	iconeVert.iconSize = new GSize(12, 20);
	iconeVert.shadowSize = new GSize(22, 20);
	iconeVert.iconAnchor = new GPoint(6, 20);
	iconeVert.infoWindowAnchor = new GPoint(5, 1);
	
	var deselectCurrent = function() {};
	
	// Création du point
	function initializePoint(lat, lng, nom, tel, fax, email, web) {
		var point = new GLatLng(lat, lng);
		var marker = new GMarker(point,{icon: iconeVert, title: nom});
		var focusPoint = function() {
			deselectCurrent();
			marker.setImage("images/rouge.png");
			deselectCurrent = function() { marker.setImage("images/vert.png");}
			marker.openInfoWindowHtml("<h3 id=\"TitreBulleInfo\"" + nom + "</h3>" +
									  "<ul id=\"ListeBulleInfo\">" +
									  "<li>Tel.          : " + tel + "</li>" +
									  "<li>Fax           : " + fax + "</li>" +
									  "<li>Courriel      : " + email + "</li>" +
									  "<li>Site Internet : <a href=\"http://" + web + "\" title=\"" + nom + "\">" + web + "</a></li>" +
									  "</ul>");
			map.panTo(point);
			return false;
		}

		GEvent.addListener(marker, 'click', focusPoint);	
		GEvent.addListener(marker, 'mouseover', function() { marker.setImage("images/rouge.png"); });
		GEvent.addListener(marker, 'mouseout', function() { marker.setImage("images/vert.png"); });
		GEvent.addListener(marker, 'infowindowclose', function(){marker.setImage("images/vert.png");});	
		map.addOverlay(marker);
	}
	
	// Initiaisation de la carte
	map = new GMap(document.getElementById("map2"),{mapTypes:[G_PHYSICAL_MAP,G_NORMAL_MAP,G_SATELLITE_MAP,G_HYBRID_MAP]});
	map.addControl(new GMapTypeControl());
	map.addControl(new GSmallMapControl());
	//map.addControl(new GOverviewMapControl(new GSize(200,180)));
	map.setCenter(new GLatLng(centerLatitude, centerLongitude), startZoom);
	var bounds = new GLatLngBounds();
	map.setCenter(bounds.getCenter(), map.getBoundsZoomLevel(bounds));
}*/
