<!--

    function calculatePaymentdep(form) {
        princ = form.price.value - form.dp.value;
        intRate = (form.ir.value/100) / 12;
        months = form.term.value * 12;
      form.pmt.value = Math.floor((princ*intRate)/(1-Math.pow(1+intRate,(-1*months)))*100)/100;
  		form.principle.value = princ;
			form.total.value = '33';
    }
    
    function calculatePayment(form) {
    	sheltercost 			=	form.shelter.value * 153;
    	counselingcost 		= form.counseling.value * 43;
    	casemgmtcost 			= form.casemgt.value * 38;
    	presentationcost 	= form.presentation.value * 27;
    	form.total.value = '$' +( sheltercost + counselingcost + casemgmtcost + presentationcost);
			//	alert ("This is a Javascript Alert")
    }    
//-->
