// Montre et cache de layer <div>

function ShowHide(Id,otherId){
	var current = document.getElementById(Id)
	
	if (current.style.display=="none") {
		current.style.display="block"; //show element
	}
	else {
		current.style.display="none"; //hide element
	}
	
	var other = document.getElementById(otherId)
	
	if(current != other){
		other.style.display="none"; //hide element
	} else {
		other.style.display="block"; //show element
	}
	
	/*if (other.style.display=="none") {
		other.style.display="block"; //show element
	}
	else {
		other.style.display="none"; //hide element
	}*/
}

function Show(Id){
	var current = document.getElementById(Id)
	current.style.display="block";
	/*if (current.style.display=="none") {
		current.style.display="block"; //show element
	}
	else {
		current.style.display="none"; //hide element
	}*/
}

function Hide(Id){
	var current = document.getElementById(Id)
	current.style.display="none";
	/*if (current.style.display=="block") {
		current.style.display="none"; //show element
	}
	else {
		current.style.display="none"; //hide element
	}*/
}
