//<!--


function Form1_Validator(theForm)
{

if (theForm.Tipo.value == "-")
{
alert("Selezionare la modalità di pagamento.");
theForm.Tipo.focus();
return (false);
}

p01 = theForm.p01.value;
p02 = theForm.p02.value;
p03 = theForm.p03.value;
p04 = theForm.p04.value;
p05 = theForm.p05.value;
p06 = theForm.p06.value;

Tot=((p01*0.75)+(p02*0.5)+(p03*2.25)+(p04*5)+(p05*5)+(p06*5));

if (Tot<20)
{
alert("Non si è raggiunto il quantitativo minimo da ordinare (20 kg). L'ordine richiesto ha un peso di " + Tot + " kg.");
theForm.Tipo.focus();
return (false);
}

return (true);
}


//-->
