// JavaScript Document
function doIt(_f)
{
  if(_f.preventing_ftfv.value!="" && _f.preventing_ftfv_each.value!="")_f.preventing_ftfv_subtotal.value=parseInt(parseInt(parseInt(_f.preventing_ftfv.value)*parseFloat(_f.preventing_ftfv_each.value)*100)/100);
  else _f.preventing_ftfv_subtotal.value="0";
  if(_f.ethical.value!="" && _f.ethical_each.value!="")_f.ethical_subtotal.value=parseInt(parseInt(parseInt(_f.ethical.value)*parseFloat(_f.ethical_each.value)*100)/100);
  else _f.ethical_subtotal.value="0";
  if(_f.caring_control.value!="" && _f.caring_control_each.value!="")_f.caring_control_subtotal.value=parseInt(parseInt(parseInt(_f.caring_control.value)*parseFloat(_f.caring_control_each.value)*100)/100);
  else _f.caring_control_subtotal.value="0";
  if(_f.handling_the_stress.value!="" && _f.handling_the_stress_each.value!="")_f.handling_the_stress_each_subtotal.value=parseInt(parseInt(parseInt(_f.handling_the_stress.value)*parseFloat(_f.handling_the_stress_each.value)*100)/100);
  else _f.handling_the_stress_each_subtotal.value="0";
   _f.total.value=parseInt(_f.preventing_ftfv_subtotal.value)+parseInt(_f.ethical_subtotal.value)+parseInt(_f.caring_control_subtotal.value)+parseInt(_f.handling_the_stress_each_subtotal.value);
}

