function load_map(lat, lng, content)
{
	<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAA9lyeQdNLV1dH9xfjhmdGNxT3qe5A5dJwafUyJ5nBCYxGolUoExRE8gIixCd0IBYE6LysoPfsEoey2w" type="text/javascript"></script>
    var map = null;
    var geocoder = null;

    
		var icon = new GIcon();
		icon.image = "admin/images/point_albastru.png";
		icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
		icon.iconSize = new GSize(22, 33);
		icon.iconAnchor = new GPoint(11, 33);
		icon.infoWindowAnchor = new GPoint(10, 1);
		
		var iconverde = new GIcon();
		iconverde.image = "admin/images/point_verde.png";
		iconverde.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
		iconverde.iconSize = new GSize(22, 33);
		iconverde.iconAnchor = new GPoint(11, 33);
		iconverde.infoWindowAnchor = new GPoint(10, 1);

		
    
 
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map333"));
        map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());
     	map.setCenter(new GLatLng(46.61926103617151,2.48291015625), 5);       
     	
       	var point = new GLatLng(lat, lng);
		var marker=new GMarker(point, icon);
		map.addOverlay(marker);
		map.setCenter(point,15);
		marker.openInfoWindowHtml(content);
       
       
        geocoder = new GClientGeocoder();
        
      }
     
 
    
}