// JavaScript Document

var map;

function initMap(lat,lng,latCenter,lngCenter,zoomMap,idAge){

	map = new GMap2(document.getElementById("gmap"));

  	map.setCenter(new GLatLng(latCenter, lngCenter),zoomMap);

    var ageIcon = new GIcon();
    ageIcon.image = document.getElementById('media_path').value+"images/pictos/icone_map_google_vierge2.png";
    ageIcon.infoWindowAnchor = new GPoint(0,0);
    ageIcon.iconSize = new GSize(25, 31);
    ageIcon.iconAnchor = new GPoint(11, 30);

    var marker =new GMarker(new GLatLng(lat, lng), {draggable:false, bouncy:false, dragCrossMove:true, icon:ageIcon});

    if(idAge != ''){
      var xhr = createXHR();
      xhr.onreadystatechange=function(){
        if(xhr.readyState==4){
          var agenceT = xhr.responseText;
          agences = agenceT.split('|');
          agence = agences[0].split(';');
          iframe  =   agences[1];
          var html="<table><tbody><tr><td style='vertical-align: middle'><a target='_blank' href='"+agence[3]+"'><img src='"+agence[4]+"' style='width:75px;' /></a></td><td style='vertical-align: middle'><a style='text-decoration:none;color:#777' target='_blank' href='"+agence[3]+"'>"+agence[5]+"<br />"+agence[6]+"<br />"+agence[7]+" "+agence[8]+"<br />Tel : "+agence[9]+"</a><br>"+iframe+"</td></tr><tr><td></td><td><a href='"+agence[3]+"' target='_blank' title='Site web' class='agenceResultLinksRed'>Site web</a></td></tr></tbody></table>";
          marker.openExtInfoWindow(map,"extInfoWindow_funkyBox_beak",html,{beakOffset: 3});
          map.addOverlay(marker);
        }
      }
      xhr.open("GET","ajax/get_lat_lng_agence.ajax.php?agence="+idAge,true);
      xhr.send(null);
    }

}

