function clickSouris(numero_id)
{
	myBox = document.getElementById(numero_id);
	if(myBox.style.display == "none" )
	myBox.style.display = "";
	else
	myBox.style.display = "none";
}

