// JavaScript Document

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_fiche_tech(obj) {

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

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

function afficher_intentions(obj) {

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

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


//alerte suppression


