function calcTotalAnnual(a, b, c, d)
{
	return (a * b) * (c * d) / 100;
}

function calcTotalBilling(e, f)
{
	return (e * (f/100000));
}
