function calcl2e(form)
{
      var pw=parseFloat(form.pow.value);
      var Tmin=parseFloat(form.tmin.value);
      var Thou=parseFloat(form.thou.value);
      if((pw < 0.)||(Tmin < 0.)||(Thou < 0.)) {warnings(1); return;}
      v=pw/1000.*60.;
      form.v01m.value=ausgab(v);
      form.p01m.value=ausgab(v/4.1868);
      v=pw/1000.*300.;
      form.v05m.value=ausgab(v);
      form.p05m.value=ausgab(v/4.1868);
      v=pw/1000.*900;
      form.v15m.value=ausgab(v);
      form.p15m.value=ausgab(v/4.1868);
      v=pw/1000.*Tmin*60.;
      form.vmin.value=ausgab(v);
      form.pmin.value=ausgab(v/4.1868);
      v=pw/1000.*3600.;
      form.v01h.value=ausgab(v);
      form.p01h.value=ausgab(v/4.1868);
      v=pw/1000.*3.*3600.;
      form.v03h.value=ausgab(v);
      form.p03h.value=ausgab(v/4.1868);
      v=pw/1000.*6.*3600.;
      form.v06h.value=ausgab(v);
      form.p06h.value=ausgab(v/4.1868);
      v=pw/1000.*Thou*3600.;
      form.vhou.value=ausgab(v);
      form.phou.value=ausgab(v/4.1868);
      return;
}
