if (GBrowserIsCompatible()) {
	var map = new GMap2(document.getElementById("map"));
	map.setCenter(new GLatLng(45.719018,4.836715), 14);
      	//map.addControl(new GSmallZoomControl()); //+ et -
	//map.addControl(new GSmallMapControl()); //+, - et direction
	map.addControl(new GLargeMapControl()); //barre graduation
	//map.addControl(new GScaleControl ()); //echelle
      	map.addControl(new GMapTypeControl()); //plan,satellite,mixte
      	map.addControl(new GOverviewMapControl()); //Vue reduite dans le bord droite de l'ecran
      	//map.enableGoogleBar(); //barre google

        function createMarker(point ) {
          var marker = new GMarker(point );
          GEvent.addListener(marker, "click", function() {
marker.openInfoWindowHtml("<div style=\"text-align:left;\"><b>Rhône Containeur Services</b><br />5 Rue de Chalon Sur Saône<br />Port de Lyon Edouard Herriot<br />69007 Lyon<br />04 72 73 44 23<br /><br /><b>Itineraire: </b><a href=\"http://www.google.com/maps?source=uds&ie=&hl=fr&daddr=5%2C+Rue+de+Chalon+Sur+Saône%2C+Lyon+%28Rhône+Containeur+Services%29+%4045.719106%2C4.836769&iwstate1=dir%3Ato\" target=\"_blank\">Arriv&eacute;e</a> - <a href=\"http://www.google.com/maps?source=uds&ie=&hl=fr&saddr=5%2C+Rue+de+Chalon+Sur+Saône%2C+Lyon+%28Rhône+Containeur+Services%29+%4045.719106%2C4.836769&iwstate1=dir%3Afrom\" target=\"_blank\">D&eacute;part</a></div>");
          });
          return marker;
        }
        map.addOverlay(createMarker(new GLatLng(45.719106,4.836769)));
}
