
// Affiche la PopIn "Reglement du jeu"
function affiche_reglement()
{
	$("#bloc_flottant").html(inject_wait(2, 100));
	
	$.get("ajax/footer_affiche_reglement.php", {},
		function(data){
			$("#bloc_flottant").html(data);
		}
	);
	
	$("#bloc_flottant").dialog({
		dialogClass: "footer_reglement",
		resizable: false, 
		draggable: false,
		width: 675,
		height: 615,	
		modal: true,		
		overlay: { 
      opacity: 0.75, 
      background: "#000" 
		}	
	});
	
	$(".ui-dialog-titlebar-close").blur();
}


// Affiche la PopIn "Charte du voyageur"
function affiche_charte()
{
	$("#bloc_flottant").html(inject_wait(2, 100));
	
	$.get("ajax/footer_affiche_charte.php", {},
		function(data){
			$("#bloc_flottant").html(data);
		}
	);
	
	$("#bloc_flottant").dialog({
		dialogClass: "footer_charte",
		resizable: false, 
		draggable: false,
		width: 675,
		height: 465,	
		modal: true,		
		overlay: { 
      opacity: 0.75, 
      background: "#000" 
		}	
	});
	
	$(".ui-dialog-titlebar-close").blur();
}


// Affiche la PopIn "CGU"
function affiche_cgu()
{
	$("#bloc_flottant").html(inject_wait(2, 100));
	
	$.get("ajax/footer_affiche_cgu.php", {},
		function(data){
			$("#bloc_flottant").html(data);
		}
	);
	
	$("#bloc_flottant").dialog({
		dialogClass: "footer_cgu",
		resizable: false, 
		draggable: false,
		width: 675,
		height: 630,	
		modal: true,		
		overlay: { 
      opacity: 0.75, 
      background: "#000" 
		}	
	});
	
	$(".ui-dialog-titlebar-close").blur();
}
