
<!--
           var amt;
           var artotal;
           var x;

           function roundit(which){
           return x=which.toFixed(0);
           }

           function amtconvert(){
           with (document.factor){
           artotal.value = roundit(amt.value*0.80);
           }
           }

           function arconvert(){
           with (document.factor){
           amt.value = roundit(artotal.value/0.80);
           }
           }

//-->
