
function startCalc(){
  interval = setInterval("calc()",1);
}
function calc(){
  one = document.autoSumForm.fee1.value;
  two = document.autoSumForm.fee2.value; 
    three = document.autoSumForm.fee3.value; 
	  four = document.autoSumForm.fee4.value; 
	    five = document.autoSumForm.fee5.value; 
		  six = document.autoSumForm.fee6.value; 
		    seven = document.autoSumForm.fee7.value; 
			  eight = document.autoSumForm.fee8.value; 
			    nine = document.autoSumForm.fee9.value; 
				  ten = document.autoSumForm.fee10.value; 
  document.autoSumForm.totalfee.value = (one * 1) + (two * 1) + (three * 1)+ (four * 1)+ (five * 1)+ (six * 1)+ (seven * 1)+ (eight * 1)+ (nine * 1)+ (ten * 1);
}
function stopCalc(){
  clearInterval(interval);
}
