function initCarte(){
  // création de la carte
  var oMap = new google.maps.Map( document.getElementById( 'map_canvas'),{
    'center' : new google.maps.LatLng( 50.472223, 4.834670),
    'zoom' : 16,
    'disableDefaultUI': true,
    'mapTypeId' : google.maps.MapTypeId.ROADMAP
  });
  var marker = new google.maps.Marker({
    			position : new google.maps.LatLng( 50.472223, 4.834670),
    			map      : oMap,
    			title    : "C.E.I.N."
    			
   });
}
// init lorsque la page est chargée
google.maps.event.addDomListener( window, 'load', initCarte);
