var form_status;function checkForm() {	// app 1 dob	if ((app1_dob_date.value == 'nodata') || (app1_dob_month.value == 'nodata') || (app1_dob_year.value == 'nodata')) {		formFail('Please check your date of birth');		return false;	}		formPassed();}function initSpecifics() {		// form fields	app1_dob_date = $('app1_dob_date');	app1_dob_month = $('app1_dob_month');	app1_dob_year = $('app1_dob_year');			}