function filltotals() 
{ 	


document.forms['franchiseapp'].elements['assetstotal'].value = (document.forms['franchiseapp'].elements['liquidassetsA'].value -0) + (document.forms['franchiseapp'].elements['tangibleassetsB'].value - 0);

document.forms['franchiseapp'].elements['NetWorth'].value = (document.forms['franchiseapp'].elements['assetstotal'].value -0) - (document.forms['franchiseapp'].elements['liabilitiesD'].value -0);


}

function addcustcc()
{
	if (franchiseapp.sendcopy.checked)
		franchiseapp.mail_template.value = "app.tpl.txt,appcust.tpl.txt";
	else
		franchiseapp.mail_template.value = "app.tpl.txt,appthanks.tpl.txt";
}