


            //<![CDATA[
           var WINDOW_HTML = '<div class="textepetit"><strong>Airotel La Sorguette<\/strong><br \/>871, route d&#39;Apt - 84800 L&#39;isle-sur-la-Sorgue <br \/>Vaucluse - Provence Alpes C&ocirc;te d&#39;Azur <br \/>Tel. +33 (0)4 90 38 05 71 - Fax +33 (0)4 90 20 84 61 <\/div>';


            function placeMarker(map, myLatlng, titre,contenu) {
                var marker = new google.maps.Marker({
                    position: myLatlng,
                    map: map,
                    title:titre
                });

                var infowindow = new google.maps.InfoWindow({
                    content: contenu
                });

                google.maps.event.addListener(marker, 'click', function() {
                    infowindow.open(map,marker);
                });

                infowindow.open(map, marker);
            }



            function initialize() {
                ///map 1
                var latlng = new google.maps.LatLng(43.9141251,5.071735382);
                var myOptions = {
                    zoom: 7,
                    center: latlng,
                    mapTypeControl:false,
                    mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
                    navigationControl: true,
                    navigationControlOptions: {style: google.maps.NavigationControlStyle.ZOOM_PAN},
                    scaleControl: true,
                    mapTypeId: google.maps.MapTypeId.ROADMAP
                };
                var map = new google.maps.Map(document.getElementById("map"), myOptions);
                placeMarker(map, latlng, "Airotel la Sorguette",WINDOW_HTML);

                
            }

            //]]>
