//CALCOLO CARRELLO SHOPPING. by Giordano Giordani

function calcTotale()
{	
var sub1=0.00, sub2=0.00, sped=8.00, totale=0.00;
sub1=document.getElementById("qta1").value * document.getElementById("pz1").value;
sub2=document.getElementById("qta2").value * document.getElementById("pz2").value;
document.getElementById("sub1").value=sub1.toFixed(2);
document.getElementById("sub2").value=sub2.toFixed(2);
totale=document.getElementById("tot").value=(sub1+sub2+sped).toFixed(2);
if(totale==8.00) totale=totale=document.getElementById("tot").value=0.00;
}

// FUNZIONE CHE DISABILITA UN CAMPO
function conferma()
{
    var spunta1=(document.getElementById("correttezza").checked == 1 ? 1 : 0);
    var spunta2=(document.getElementById("impegno").checked == 1 ? 1 : 0);
    var spunta3=(document.getElementById("informativa").checked == 1 ? 1 : 0);
    var disattiva=0;
    
    // disattivo INOLTRA
    disattiva=spunta1+spunta2+spunta3;
    if (disattiva!=3)
         {
            document.getElementById("acquista").disabled=true;
         }
    else
		 {
			document.getElementById("acquista").disabled=false;
		 }
}

