function calculer()
{
	//-- Initialisation
	var f=document.getElementById('formulaire');
	var montant,nature,fraisnotaire;
	montant = strtoint(f.prix_achatnet.value);
	nature  = f.nature.options[f.nature.selectedIndex].value;

	//-- Calcul
	fraisnotaire = frais_de_notaire(montant,nature);

	//-- Affichage rˇsultat
	s_fraisnotaire = inttostr(fraisnotaire);
	document.getElementById('id_notaire').innerHTML="<strong>"+s_fraisnotaire+"&euro;</strong>";
}