
var map;

function gmap_load()
{

  if (GBrowserIsCompatible()) {
	var divMap = $("googlemap");
	divMap.style.width = "680px";
	divMap.style.height = "350px";
	divMap.style.marginLeft = "20px";
	divMap.style.marginTop = "0px";
	divMap.style.marginBottom = "10px";

    map = new GMap2(divMap);
    var pt1 = new GLatLng(46.825078, -71.309385);  // Latitude, longitude pour le marqueur
    var pt2 = new GLatLng(46.793000, -71.180200);  // Latitude, longitude pour le marqueur
    
    map.addControl(new GSmallMapControl());
    map.addControl(new GMapTypeControl());
    map.setCenter(new GLatLng(46.811308, -71.230545), 11);  // Centre initial de la carte
    
	var markerText1 = "<strong>Clôture Nordik - Clôture Orléans</strong><br />2395 rue De Celles<br/>Qu&eacute;bec (Qu&eacute;bec)<br/>G2C 2B8<br/><br/>T&eacute;l.: (418) 843-5575<br />Fax: (418) 847-0244";
    var marker1 = new GMarker(pt1);
    map.addOverlay(marker1);

    var markerText2 = "<strong>Clôture Nordik - Clôture Orléans</strong><br />5350 Boul. de la Rive-Sud<br/>Lévis (Québec)<br/>G6V 4Z2<br/><br/>T&eacute;l.: (418) 843-5575<br />Fax: (418) 847-0244";
    var marker2 = new GMarker(pt2);
    map.addOverlay(marker2);

	GEvent.addListener(marker1, "click", function() {
	    map.closeInfoWindow();
	    this.openInfoWindowHtml(markerText1);
	});

	GEvent.addListener(marker2, "click", function() {
	    map.closeInfoWindow();
	    this.openInfoWindowHtml(markerText2);
	});

  }
}
