function print_mail(pre, suf){
	var mail="<a href=mailto:";	 
	mail += pre;
	mail +="@";
	mail += suf;
	mail += ">";
	mail += pre;
	mail +="@";
	mail += suf;
	mail +="</a>"; 
	document.write(mail);
}

function calcul_cmd(){
	
	nbre_bon = document.getElementById("nbre_bon");
	val_bon = document.getElementById("val_bon");
	nbre_livre = document.getElementById("nbre_livre");
	nbre_livre2 = document.getElementById("nbre_livre2");
	
	tot_bon = document.getElementById("tot_bon");
	tot_livre = document.getElementById("tot_livre");
	tot_livre2 = document.getElementById("tot_livre2");
	tot_all = document.getElementById("tot_all");
	
	tot_bon.value = (parseInt(nbre_bon.value) * parseInt(val_bon.value)) + ".-";
	tot_livre.value = (parseInt(nbre_livre.value) * 48) + ".-";
	tot_livre2.value = (parseInt(nbre_livre2.value) * 30) + ".-";
	
	tot_all.value = ((parseInt(nbre_bon.value) * parseInt(val_bon.value)) + (parseInt(nbre_livre.value) * 48) + (parseInt(nbre_livre2.value) * 30)) + ".-";
	
	

}