// JavaScript Document
// Description:  Recalculdate and repopulate the Order Total field on /cart/index.php

function reCalc(amt, fld) {
	total = amt.toFixed(2);
	document.forms[0].elements[fld].value = total;
}