//<![CDATA[
function load() {
if (GBrowserIsCompatible()) {
	var map = new GMap2($('map'));
	/*map.setCenter(new GLatLng(48.835995,2.398303), 15);
	var point = new GLatLng(48.835365,2.398327);*/
/*	map.setCenter(new GLatLng(48.85184,2.386522), 15);
	var point = new GLatLng(48.85184,2.386522);*/
	map.setCenter(new GLatLng(48.85084,2.386522), 15);
	var point = new GLatLng(48.85084,2.386522);
	var MyIcon = new GIcon(); // create a new Google Icon object
	MyIcon.image = "images/mark3.png";// image file name
	//MyIcon.shadow = "images/shadow.png";// shadow file name
	MyIcon.iconSize = new GSize(58, 58);// width (px) and height (px)
	//MyIcon.shadowSize = new GSize(55, 33);// the shadow's size
	MyIcon.iconAnchor = new GPoint(29, 57);// base of the icon
	var marker = new GMarker(point, MyIcon);
	map.addOverlay(marker); 
	map.addControl(new GSmallZoomControl3D());			 
}}
//]]>