<!--
 var result = 0;
 var roundLength = 2;
 function convertFtoC()
 {
  result = ((document.form1.temperature.value - 32) / 1.8);
  document.form1.result.value = result;
  // Finished processing
 }
 function convertCtoF()
 {
  result = (document.form2.temperature.value * 1.8 + 32);
  document.form2.result.value = result;
  // Finished processing
 }
 function convertGtoL()
 {
  result = (document.form3.gallons.value * 3.785);
  document.form3.result.value = result;
  // Finished processing
 }
 function convertLtoG()
 {
  result = (document.form4.liters.value / 3.785);
  document.form4.result.value = result;
  // Finished processing
 }
  function convertItoC()
 {
  result = (document.form5.inches.value * 2.54);
  document.form5.result.value = result;
  // Finished processing
 }
  function convertCtoI()
 {
  result = (document.form6.CM.value / 2.54);
  document.form6.result.value = result;
  // Finished processing
 }
  function computeGallons()
 {
 	result = (document.form7.LT.value * document.form7.WT.value * document.form7.HT.value / 231);
 	document.form7.result.value = result;
 	document.form7.result2.value = (result * 0.833);
 	// Finished processing
 }
  function computeUSGallons()
 {
  result = (document.form8.UKGallons.value * 1.201);
  document.form8.result.value = result;
 	// Finished processing
 }
  function computeUKGallons()
 {
  result = (document.form9.USGallons.value * 0.833);
  document.form9.result.value = result;
 	// Finished processing
 }
//-->