function validateCalc(frm)
{
	if(validateEmpty(frm.preparedFor, "Prepared For")
			|| validateEmpty(frm.agentemail, "Agent Email")
			|| validateEmail(frm.preparedFor)	
			|| validateEmpty(frm.address, "Address")
			|| validateEmpty(frm.loanPayoff, "Loan Payoff")
			|| validateEmpty(frm.salesPrice, "Sale Price")
			/*|| validateEmail(frm.username)*/
			|| validateEmpty(frm.escrowFees, "Escrow Fees")
			|| validateEmpty(frm.documentPreparation, "Document Preparation")
			|| validateEmpty(frm.gfee, "Guaranty Fee")	
			|| validateEmpty(frm.totalAnnualTaxes, "Total Annual Taxes")	
			)
		return false;
		
	return true;	
}



