// envoi du formulaire
function envoiFormulaire() {
	document.getElementById('tasko').submit();
}
function fermerPopup() {
	document.getElementById('confirmer').style.display = "none";
}
function afficherPopup() {
	document.getElementById('confirmer').style.display = "block";
}
function allerA(champ) {
	document.getElementById('champ').focus();
}

