function ChargeOnglet(NomOnglet){
	if (NomOnglet == "Carto") {
		document.getElementById("DivCarto").style.display = "block";
		document.getElementById("DivVideo").style.display = "none";
	};
	if (NomOnglet == "Video") {
		document.getElementById("DivCarto").style.display = "none";
		document.getElementById("DivVideo").style.display = "block";
	};
}

function MaPopupFen(lien,nomFen,largeur,hauteur){
	MafenFen=window.open("",nomFen,"toolbar=0,scrollbars=yes,location=0,status=1,resizable=1,menubar=0,marginwidth=0,marginheight=0,width="+largeur+",height="+hauteur);
	MafenFen=window.open(lien,nomFen);
}

function AfficheElt(MonIdElt){
	if(document.getElementById)
	{
		if(document.getElementById(MonIdElt))
		{
			document.getElementById(MonIdElt).style.display = "block";
		}
	}
	else if(document.all)
	{
		if(document.all[MonIdElt])
		{
			document.all[MonIdElt].style.display = "block";
		}
	}
	return true;
}