<!--
		function radio_button_checker(form) {
			for (counter = 0; counter < form.length; counter++)
			{
				if (form[counter].checked) {
					radio_choice = form[counter].value;
					}
			}
			return radio_choice
		}

		function FineCalcola(Costo){	
		document.getElementById('Prezzo').innerHTML=Costo
		}
		
		function Calcola(){
			var Costo = 0
			if (document.Preventivi.Flash.checked) {Costo = 280}
			if (document.Preventivi.Catalogo.checked) {Costo = Costo + 500} 
			if (document.Preventivi.E_Commerce.checked) {Costo = Costo + 500} 
			Costo = Costo + 200 + (document.Preventivi.Pagine.value -1) * 80
			Costo = Costo + (Costo * (radio_button_checker(document.Preventivi.Lingue) - 1) * 30 / 100)
			document.getElementById('Prezzo').innerHTML="<span class='Sms'>" + Costo + "</span>"
			CalcolaTime=window.setTimeout("FineCalcola("+Costo+")",1000)
		}
//-->
