function vo2maxcalculate()

{
  var distancia = document.vo2max.distancia.value;
  var vo2 = (((distancia / 15)-133)*0.172)+33.3;
  document.vo2max.vo2.value = vo2;
}

function vo2clear()

{
  document.vo2max.vo2.value = "";
}