﻿function calculate(){var doc=document.pointCalc;var points=0;var fat=doc.fat.value;var calories=doc.calories.value;points=(calories/69.8)+(fat/4.12);var converted=parseFloat(points);var decimal=(converted-parseInt(converted,10));decimal=Math.round(decimal*10);if(decimal==5){doc.result.value=(parseInt(converted,10)+0.5)}if((decimal<3)||(decimal>7)){doc.result.value=Math.round(converted)}else{doc.result.value=(parseInt(converted,10)+0.5);}}
