<script type="text/javascript">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Created by: www.jdstiles.com -->
<!-- Begin
function startCalc(){
 interval = setInterval("calc()",1);
}
function calc(){
 one = document.autoSumForm.firstBox.value;
 two = document.autoSumForm.secondBox.value;
 document.autoSumForm.thirdBox.value = (one * 1) + (two * 1);
}
function stopCalc(){
 clearInterval(interval);
}
//  End -->
</script>
