function startCalc(row)
{
interval = setInterval("calc('"+row+"')",1);
}
function calc(row)
{
var txtprice = document.forms['autoSumForm'].elements['unit<?=$i;?>'];
var txtamount = document.forms['autoSumForm'].elements['sales<?=$i;?>'];
var txttotal = document.forms['autoSumForm'].elements['totalgap<?=$i?>'];
var lentxt3 = txtprice.length;