
function pcalculate4()

{
    var BM = document.stork.BMI.value;
  var gender = document.stork.sesso.options[document.stork.sesso.selectedIndex].value;
var eta = document.stork.T1.value
   if (gender=="Maschio")
    {
     
VO2 = (1.20*BM) + (0.23*eta) - (10.8*1) - 5.4;
VO3 = (1.29*BM) + (0.20*eta) - (11.4*1) - 8.0;
VO4 = (1.46*BM) + (0.14*eta) - (11.6*1) - 10;
VO5 = (1.61*BM) + (0.13*eta) - (12.1*1) - 13.9;
     
    document.stork.punteggio.value = Math.round(VO2);
    document.stork.punteggio0.value = Math.round(VO3);
    document.stork.punteggio1.value = Math.round(VO4);
    document.stork.punteggio2.value = Math.round(VO5);


    }

  if (gender=="Femmina")
    {
     
VO2 = (1.20*BM) + (0.23*eta) - (10.8*0) - 5.4;
VO3 = (1.29*BM) + (0.20*eta) - (11.4*0) - 8.0;
VO4 = (1.46*BM) + (0.14*eta) - (11.6*0) - 10;
VO5 = (1.61*BM) + (0.13*eta) - (12.1*0) - 13.9;

     Math.round(document.stork.punteggio.value = VO2);
     Math.round(document.stork.punteggio0.value = VO3);
     Math.round(document.stork.punteggio1.value = VO4);
     Math.round(document.stork.punteggio2.value = VO5);
    }

}


function pclear4()

{
   document.stork.punteggio.value = "";
   document.stork.punteggio0.value = "";
   document.stork.punteggio1.value = "";
   document.stork.punteggio2.value = "";
}


