I'm trying the following elment to work
function CalculateTotal(frm)
if I do
alert(frm) I get sumtotal3
now later in this script I would like the following.
documnet.form.frm.value=total
but it gives me error that frm is still unknown, so it did not replace frm for sumtotal3, which it should have done
function CalculateTotal(frm)
if I do
alert(frm) I get sumtotal3
now later in this script I would like the following.
documnet.form.frm.value=total
but it gives me error that frm is still unknown, so it did not replace frm for sumtotal3, which it should have done