<!--

function calc_rp_a_mth(theForm){
var msg = "Please enter valid numbers";
var obj = theForm.currentage_calc03;
	if (isNaN(obj.value) == true || obj.value == ""){ //is not a number
	alert(msg);
	obj.focus();
	return false
	}
obj = theForm.pv_calc03;
	if (isNaN(obj.value) == true || obj.value == ""){ //is not a number
	alert(msg);
	obj.focus();
	return false
	}
obj = theForm.pmt_calc03;
	if (isNaN(obj.value) == true || obj.value == ""){ //is not a number
	alert(msg);
	obj.focus();
	return false
	}
obj = theForm.r_calc03;
	if (isNaN(obj.value) == true || obj.value == ""){ //is not a number
	alert(msg);
	obj.focus();
	return false
	}
obj = theForm.mip_calc03;
	if (isNaN(obj.value) == true || obj.value == ""){ //is not a number
	alert(msg);
	obj.focus();
	return false
	}
obj = theForm.mwsaa_calc03;
	if (isNaN(obj.value) == true || obj.value == ""){ //is not a number
	alert(msg);
	obj.focus();
	return false
	}
obj = theForm.mwp_calc03;
	if (isNaN(obj.value) == true || obj.value == ""){ //is not a number
	alert(msg);
	obj.focus();
	return false
	}
obj = theForm.req_fv_calc03;
	if (isNaN(obj.value) == true || obj.value == ""){ //is not a number
	alert(msg);
	obj.focus();
	return false
	}


if (parseFloat(theForm.mwsaa_calc03.value) < (parseFloat(theForm.currentage_calc03.value) + parseFloat(theForm.mip_calc03.value))){
	alert("Input error. Please check the value of your first, fourth and sixth input.");
	theForm.currentage_calc03.focus();
	return false
}


return true;


} // end function

//-->