function affichage_prix(iMontant, sDevise){
	iMontant = Math.round(iMontant * 100) / 100;
	
	if (sDevise == '&pound;'){
		return sDevise+iMontant;
	}
	else{
		return iMontant+sDevise;
	}
}
