/* FUNCTION PSEUDO CLASS ----------- */
function mortgageInfo( m, air, ty, mp, np, cia, cpp )
	{
	this.mortgageAmount = m;
	this.anualInterestRate = air;
	this.termYears = ty;
	this.monthlyPayment = mp; 
	this.numPayments = np;
	this.ttlPaymentsAndInterest = (eval(cia) + eval(cpp)).toFixed(2);

	}
/* ----------- */
