<!--
 var result = 0;
 var roundLength = 2;
 function convertFtoC()
 {
  result = Math.round(((document.form1.temperature.value - 32) / 1.8)*100)/100;
  document.form1.result.value = result;
 }
 function convertCtoF()
 {
  result = Math.round((document.form2.temperature.value * 1.8 + 32)*100)/100;
  document.form2.result.value = result;
 }
 function convertGtoL()
 {
  result = Math.round((document.form3.gallons.value * 3.785)*100)/100;
  document.form3.result.value = result;
 }
 function convertLtoG()
 {
  result = Math.round((document.form4.liters.value / 3.785)*100)/100;
  document.form4.result.value = result;
 }
  function convertItoC()
 {
  result = Math.round((document.form5.inches.value * 2.54)*100)/100;
  document.form5.result.value = result;
 }
  function convertCtoI()
 {
  result = Math.round((document.form6.CM.value / 2.54)*100)/100;
  document.form6.result.value = result;
 }
  function computeGallons()
 {
 	result = Math.round((document.form7.LT.value * document.form7.WT.value * document.form7.HT.value / 231)*100)/100;
 	document.form7.result.value = Math.round(result*100)/100;
 	document.form7.result2.value = Math.round((result * 0.833)*100)/100;
 }
  function computeUSGallons()
 {
  result = Math.round((document.form8.UKGallons.value * 1.201)*100)/100;
  document.form8.result.value = result;
 }
  function computeUKGallons()
 {
  result = Math.round((document.form9.USGallons.value * 0.833)*100)/100;
  document.form9.result.value = result;
 }
  function convertMtoF()
 {
  result = Math.round((document.form10.Meters.value * 3.28)*100)/100;
  document.form10.result.value = result;
 }
  function convertFtoM()
 {
  result = Math.round((document.form11.Feet.value * 0.3048)*100)/100;
  document.form11.result.value = result;
 }
 function convertMeqtoDKH()
 {
  result = Math.round((document.form12.meq.value * 2.8)*100)/100;
  resultppm = Math.round((document.form12.meq.value * 50)*100)/100;
  document.form12.result.value = result;
  document.form12.resultppm.value = resultppm;
 }
 function convertDKHtoMeq()
 {
  result = Math.round((document.form13.dkh.value / 2.8)*100)/100;
  resultppm = Math.round((result * 50)*100)/100;
  document.form13.result.value = result;
  document.form13.resultppm.value = resultppm;
 }
//-->