function validate_form_annual_meeting_registration () {
	
		/* FOR TESTING ONLY */ //alert ("Validating Annual Meeting Registation Form");
	
	var errors = 0;
	
	for (var i=0; i<6; i++) {
		
			/* FOR TESTING ONLY */ //alert ("first name of guest "+i+"="+getCorrectId('guest_'+i+'_name_last').value);
		
		if (
			
			getCorrectId('guest_reg_'+i+'_rate_id') && 
			
			getCorrectId('guest_reg_'+i+'_rate_id').options[getCorrectId('guest_reg_'+i+'_rate_id').selectedIndex].value &&
			
			(getCorrectId('guest_'+i+'_name_last').value == '' || getCorrectId('guest_'+i+'_name_first').value == '')
						
		) {
			
			getCorrectId('row_guest_reg_'+i).className = 'error';
			getCorrectId('row_guest_reg_'+i+'_2').className = 'error';
			
			errors++;
		}
	}
	
	if (errors) {
		
		alert ("You must provide first and last names for your Guest(s)");
		
		return false;
		
	} else {
		
		return true;
	}
}