function afficherElementParId(divId){
	document.getElementById(divId).style.display = "";
}

function confirmer(objteForm){
	if (confirm("Voulez-vous annuler la modification ")){
		objteForm.submit();
	}else  return;
}

function confirmerAnnulation(){
	if (confirm("Voulez-vous annuler la modification ")){
		return true;
	}else  return false;
}

function chargerPage(selected) {
	return (selected != -1);
} 


