function onH3click(oH3) {
	if (document.getElementById(oH3.id+"info").style.display=="block"){
		document.getElementById(oH3.id+"img").src="/img/flechebas.gif";
		document.getElementById(oH3.id+"info").style.display="none";
	}
	else{
		document.getElementById(oH3.id+"img").src="/img/flechehaut.gif";
		document.getElementById(oH3.id+"info").style.display="block";
	}
}

function confirmSubmit() {
	return confirm("Etes vous sur de vouloir faire cette opération ?")
}