﻿function EffaceAffiche(departement)
{
	//if(departement>0 && departement<10) departement = "0"+departement;
	
	//display none pour toutes les div département
	if(window.document.getElementById("infos_dep_2A"))
				window.document.getElementById("infos_dep_2A").style.display = 'none';
	if(window.document.getElementById("infos_dep_2B"))
				window.document.getElementById("infos_dep_2B").style.display = 'none';
	for(var i=1; i<= window.document.getElementsByTagName('AREA').length; i++)
	{
		if(i>0 && i<10)
		{
			if(window.document.getElementById("infos_dep_0"+i))
				window.document.getElementById("infos_dep_0"+i).style.display = 'none';
		}
		else
		{
			if(window.document.getElementById("infos_dep_"+i))
				window.document.getElementById("infos_dep_"+i).style.display = 'none';
		}
	}
	
	//affiche les informations relaives au département survolé
	if(window.document.getElementById("infos_dep_"+departement))
		window.document.getElementById("infos_dep_"+departement).style.display = 'block';
}