
function load()
  {
  if (GBrowserIsCompatible())
   {
   var map = new GMap2(document.getElementById("map"));
   map.addControl(new GMapTypeControl());
   map.addControl(new GLargeMapControl());
   map.addControl(new GScaleControl());
   map.setCenter(new GLatLng(42.677927, 9.442760),11); 
   var point = new GLatLng(42.677927, 9.442760);
   var MGMicon = new GIcon();
   MGMicon.iconSize=new GSize(20,34);
   MGMicon.shadowSize=new GSize(56,32);
   MGMicon.iconAnchor=new GPoint(16,32);
   MGMicon.infoWindowAnchor=new GPoint(16,0);
   var MGMrepere = new GIcon(MGMicon, "http://www.spfixation.fr/img/finger.png", null, "http://www.spfixation.fr/img/fingers-s.png");
   var marker = new GMarker(point,MGMrepere);
   map.addOverlay(marker);
   point = new GLatLng(42.677927, 9.442760);
   map.openInfoWindowHtml(point,'<div align="center"><img src="http://www.spfixation.fr/img/logo3.png" width="200" height="75" /><br />Immeuble Le Lésia<br />Avenue de la Libération<br />20600 BASTIA<br /><br />@ : <a href="mailto:contact@spfixation.info" title="Envoyer un e-mail">contact@spfixation.info</a><br />Site : <a href="http://www.spfixation.fr" title="Visiter notre site">www.spfixation.fr</a></div>');
 }
}

