// JavaScript Document

function afficher_menu(obj) {

var etat_menu=document.getElementById(obj).style.display;

if (etat_menu=="none")
	{
	document.getElementById(obj).style.display = ''; // AFFICHE LE COMPOSANT
	}
else if (etat_menu=="")
	{
	document.getElementById(obj).style.display = 'none'; // AFFICHE LE COMPOSANT
	}
}



function afficher_programme(obj) {

var etat_programme=document.getElementById(obj).style.display;

if (etat_programme=="none")
	{
	document.getElementById(obj).style.display = ''; // AFFICHE LE COMPOSANT
	}
else if (etat_programme=="")
	{
	document.getElementById(obj).style.display = 'none'; // AFFICHE LE COMPOSANT
	}
}

function afficher_formulaire(obj) {

var etat_formulaire=document.getElementById(obj).style.display;

if (etat_formulaire=="none")
	{
	document.getElementById(obj).style.display = ''; // AFFICHE LE COMPOSANT
	}
else if (etat_formulaire=="")
	{
	document.getElementById(obj).style.display = 'none'; // AFFICHE LE COMPOSANT
	}
}


function afficher_video()
	{
	document.write("<div align='center'><?php echo $affiche_video[2]; ?></div>")	
	}



function suppr_alert(chemin,article) {

var reponse=window.confirm ("voulez-vous supprimer ce contenu du site ?");
if (reponse==false)
	{
	location.replace("");
	}
else
	{
	location.replace (chemin+article) ;
	}

}

function annuler(chemin)
	{
	location.replace (chemin)
	}
