function formHandler(){
var URL =
document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}


function ft_to_cfs () {
  document.ft2cfs.flow.value=Math.round(Math.exp((eval(document.ft2cfs.guage.value)+6.7558)/1.5053));
}

function cfs_to_ft () {
  document.cfs2ft.guage.value=(Math.round((1.5053*Math.log(eval(document.cfs2ft.flow.value))-6.7558)*10))/10;
}

function convert () {
  ft_to_cfs();
  cfs_to_ft();
}
