// JavaScript Document
function checkWorksheet(form) {
	var age, annIncome;
	var retval = true;
	var msg = '';
	if(!validate_required(form.age) || !parseInt(form.age.value)) {
		retval = false;
		msg = msg + 'Your Age\n';
		form.age.focus();
	}
	if(!validate_required(form.annualIncome) || !parseInt(form.annualIncome.value)) {
		retval = false;
		msg = msg + 'Your Annual Income\n';
		form.annualIncome.focus();
	}
	if(msg.length > 0) {
		alert('Please complete the following:\n' + msg);
	}
	
	
	return retval;
}
