/* Converting Temperature Script | http://www.cheap-solar-4home.com/ */
function cf() {
  document.calc.result.value=Math.round(((document.calc.temp.value) * 9/5 + 32) * 10) / 10;
}

function fc() {
  document.calc.temp.value=Math.round(((((document.calc.result.value)- 32) * 5)/9) * 10) / 10;
}

if(document.layers) window.captureEvents(Event.KEYDOWN);
function enterKey() {
  if(event.keyCode==13) event.keyCode=9;
}

