// JavaScript Document

function ShowItem(elem){
	document.getElementById(elem).style.display = "block";
}

function HideItem(elem){
	document.getElementById(elem).style.display = "none";
}

function clearInput(Element){
	Element.value = "";
	return true;
}

function GoListe(lien){
	document.location.href = lien;	
}
