function checkValue(){
	if ((document.getElementById('montant').value=='') || (isNaN(document.getElementById('montant').value))){
		alert ('Veuillez saisir un montant exact!');
		document.getElementById('montant').value='';
		document.getElementById('montant').focus();
		return false;
	}else return true;
}
