function Alert(Message, Callback)
{
		var W = 400;
		var H = 150;
		var P = 20;
		
		$("#content_site").before("<div id='popup' class='popup_visible'><div id='popup_cache' class='popup_cache' onclick='FermerAlert();'></div><div id='popup_window' style='text-align: center;'><div id='popup_fondtexte' style='height: "+H+"px;'><div id='popup_icone'><img src='images/alert.jpg' width='76' height='64' align='absmiddle' /></div><div id='popup_texte'>"+Message+"</div></div><div id='popup_bouton'><input type='button' value='      OK      ' onclick=\"this.style.display='none';FermerAlert();\" /></div></div></div>");
		
		document.getElementById('popup_window').style.width = W+"px";
		document.getElementById('popup_window').style.height = H+"px";
		document.getElementById('popup_window').style.marginLeft = -Math.round((W+P)/2)+"px";
		document.getElementById('popup_window').style.marginTop = -Math.round((H+P)/2)+"px";
		
		document.getElementById('popup_texte').style.marginTop = -Math.round((document.getElementById('popup_texte').offsetHeight)/2)+"px";
		
		$('#popup_cache').animate({ opacity: 0 }, 0);
		$('#popup_cache').animate({ opacity: 0.8 }, 'slow');
		
		$('#popup_window').animate({ opacity: 0, width: 1 }, 0);
		$('#popup_window').animate({ opacity: 1, width: W }, 'slow');
		
		$('#banniere').animate({ top: "-="+$('#banniere').height() }, 'slow');
		
		PositionPied = $("#pied").offset().top;
		
		$('#pied').animate({ top: $(document).height()-$("#pied").offset().top }, 'slow', Callback);
}

function Map()
{
		var W = 600;
		var H = 400;
		var P = 20;
		
		$(".page_video").css("visibility", "hidden");
		
		$("#content_site").before("<div id='popup' class='popup_visible'><div id='popup_cache' class='popup_cache' onclick='FermerAlert();'></div><div id='popup_window' style='text-align: center;'><div id='map' style='width: 600px; height: 400px;'></div></div></div>");
		
		document.getElementById('popup_window').style.width = W+"px";
		document.getElementById('popup_window').style.height = H+"px";
		document.getElementById('popup_window').style.marginLeft = -Math.round((W+P)/2)+"px";
		document.getElementById('popup_window').style.marginTop = -Math.round((H+P)/2)+"px";
		
		//document.getElementById('popup_texte').style.marginTop = -Math.round((document.getElementById('popup_texte').offsetHeight)/2)+"px";
		
		 var mapDiv = document.getElementById('map');
		  map = new google.maps.Map(mapDiv, {
			center: new google.maps.LatLng(48.167116,2.205677),
			zoom: 8,
			mapTypeId: google.maps.MapTypeId.ROADMAP
		  });
		
		  distanceWidget = new DistanceWidget({
			map: map,
			distance: 80, // Starting distance in km.
			maxDistance: 80, // Twitter has a max distance of 2500km.
			color: '#000000',
			activeColor: '#5599bb'
		  });
		
		$('#popup_cache').animate({ opacity: 0 }, 0);
		$('#popup_cache').animate({ opacity: 0.8 }, 'slow');
		
		$('#popup_window').animate({ opacity: 0, width: 1 }, 0);
		$('#popup_window').animate({ opacity: 1, width: W }, 'slow');
		
		$('#banniere').animate({ top: "-="+$('#banniere').height() }, 'slow');
		
		PositionPied = $("#pied").offset().top;
		
		$('#pied').animate({ top: $(document).height()-$("#pied").offset().top }, 'slow');
}

var FuturFocus = null;

function FermerAlert()
{
	$('#popup_window').animate({ opacity: 0, marginLeft: 192, width: 1 }, 'slow');
	
	var Detruire = function()
	{
		$('#popup').remove();
	}
	
	$('#popup_cache').animate({ opacity: 0 }, 'slow', Detruire);	
	
	$('#banniere').animate({ top: 0 }, 'slow');
	$('#pied').animate({ top: 0 }, 'slow');
	
	if(FuturFocus != null)
	{
		$("#"+FuturFocus).focus();
		FuturFocus = null;
	}
	
	$(".page_video").css("visibility", "visible");
}
