﻿// DEBUT GOOGLE MAPS
	function load() {
		if (GBrowserIsCompatible()) {
		    var map = new GMap2(document.getElementById("map"));
			map.addControl(new GLargeMapControl());
			map.addControl(new GMapTypeControl());
			var coord_s = new GLatLng(48.256263, 7.454921);
			var coord_o = new GLatLng(48.081147, 7.352858);
			var coord_c = new GLatLng(48.168705, 7.4038895);
			var coord_m = new GLatLng(47.745001,7.341571);
			map.setCenter(coord_c, 8);     
			var icon = new GIcon();
			icon.image = "http://www.ml-interim.com/images/logo_map_small.gif";
			icon.iconSize=new GSize(46,24);
			icon.iconAnchor=new GPoint(16,16);
			var marker_s = new GMarker(coord_s, {icon:icon, title:"Agence de Sélestat"});
			var marker_o = new GMarker(coord_o, {icon:icon, title:"Agence de Colmar"});
			var marker_m = new GMarker(coord_m, {icon:icon, title:"Agence de Mulhouse"});
			map.addOverlay(marker_s);
			map.addOverlay(marker_o);
			map.addOverlay(marker_m);
			
			GEvent.addListener(marker_s, "click", function() {
			map.openInfoWindowHtml(coord_s,'<div style="text-align: center; min-height:125px; margin-top: -10px;"><img src="http://www.ml-interim.com/images/logo_map.gif" /><br /><strong>Agence de Sélestat</strong><br />31 quai Pêcheurs<br />67600 SELESTAT<br />Tél : 03 90 56 33 33<br /><a href="selestat@ml-interim.com">selestat@ml-interim.com</a></div>');
			});
			
			GEvent.addListener(marker_o, "click", function() {
			map.openInfoWindowHtml(coord_o,'<div style="text-align: center; min-height:125px; margin-top: -10px;" ><img src="http://www.ml-interim.com/images/logo_map.gif" /><br /><strong>Agence de Colmar</strong><br />3a, route d\'Ingersheim<br />68000 COLMAR<br />Tél : 03 89 41 12 01<br /><a href="mailto:colmar@ml-interim.com">colmar@ml-interim.com</a></div>');
			});		
			
			GEvent.addListener(marker_m, "click", function() {
			map.openInfoWindowHtml(coord_m,'<div style="text-align: center; min-height:125px; margin-top: -10px;" ><img src="http://www.ml-interim.com/images/logo_map_med.gif" /><br /><strong>Agence de Mulhouse</strong><br />10 Rue Paul Déroulède<br />68100 MULHOUSE<br />Tél : 03 89 45 46 46<br /><a href="mailto:mulhouse@ml-interim-medical.fr">mulhouse@ml-interim-medical.fr</a></div>');
			});						
			}
// FIN GOOGLE MAPS
	}