<!--

function calc_rp_get_fv(theForm){
var msg = "Please enter valid numbers.";
var obj = theForm.currentage_calc04;
	if (isNaN(obj.value) == true || obj.value == ""){ //is not a number
	alert(msg);
	obj.focus();
	return false
	}
obj = theForm.pv_calc04;
	if (isNaN(obj.value) == true || obj.value == ""){ //is not a number
	alert(msg);
	obj.focus();
	return false
	}
obj = theForm.pmt_calc04;
	if (isNaN(obj.value) == true || obj.value == ""){ //is not a number
	alert(msg);
	obj.focus();
	return false
	}
obj = theForm.r_calc04;
	if (isNaN(obj.value) == true || obj.value == ""){ //is not a number
	alert(msg);
	obj.focus();
	return false
	}
obj = theForm.mip_calc04;
	if (isNaN(obj.value) == true || obj.value == ""){ //is not a number
	alert(msg);
	obj.focus();
	return false
	}
obj = theForm.mwsaa_calc04;
	if (isNaN(obj.value) == true || obj.value == ""){ //is not a number
	alert(msg);
	obj.focus();
	return false
	}
obj = theForm.mwp_calc04;
	if (isNaN(obj.value) == true || obj.value == ""){ //is not a number
	alert(msg);
	obj.focus();
	return false
	}
obj = theForm.tw_calc04;
	if (isNaN(obj.value) == true || obj.value == ""){ //is not a number
	alert(msg);
	obj.focus();
	return false
	}


if (parseFloat(theForm.mwsaa_calc04.value) < (parseFloat(theForm.currentage_calc04.value) + parseFloat(theForm.mip_calc04.value))){
	alert("Input error. Please check the value of your first, fourth and seventh input.");
	theForm.currentage_calc04.focus();
	return false
	
}

return true;


} // end function

//-->