
function closePopin(){
	$("#popinContainer, #flashContainer").remove();
	if (typeof document.body.style.maxHeight === "undefined") {
		$("#mainContainer select").css("visibility","visible");
	}
	$("html, body").css("height","auto");
	$("html, body").css("overflow","");
}

//Fonction Popin
	$(function(){	
		if($("#flashContainer").length){
		$("html, body").css("height",$(window).height());
		$("html, body").css("overflow","hidden");
		
		if (typeof document.body.style.maxHeight === "undefined") {
			$("#popinContainer").height($(document).height());
			$("#mainContainer select").css("visibility","hidden");
			$("#flashContainer select").css("visibility","visible");
		}
		$("#popinContainer, #flashContainer").bind("click",function(){
			closePopin();
			return false;
		});
	}
	} 
);
//Fin Fonction Popin





