function calcolatoreVo2max()

{
  var alcol = document.vo2max.alcol.value;
   var ml = document.vo2max.ml.value;
  var vo2 = (((alcol/100)*5.53)*ml);
  document.vo2max.calorie.value = Math.round(vo2);
}

function vo2clear()

{
 document.vo2max.calorie.value = "";
}