function CheckForm( theform )
{
	var bMissingFields = false;
	var strFields = "";
	
	
/*	name
	email
	telephone
	reservation_date
	reservation_time
no	alternate_time
	number_of_people
*/	
	
	
	if( theform.name.value == '' ){
		bMissingFields = true;
		strFields += "     Name\n";
	}
	if( theform.email.value == '' ){
		bMissingFields = true;
		strFields += "     Email\n";
	}
	if( theform.telephone.value == '' ){
		bMissingFields = true;
		strFields += "     Telephone\n";
	}
	if( theform.reservation_date.value == '' ){
		bMissingFields = true;
		strFields += "     Reservation Date\n";
	}
	if( theform.reservation_time.value == '' ){
		bMissingFields = true;
		strFields += "     Reservation Time\n";
	}
/*	if( theform.alternate_time.value == '' ){
		bMissingFields = true;
		strFields += "     Alternate Time\n";
	}*/
	if( theform.number_of_people.value == '' ){
		bMissingFields = true;
		strFields += "     Number of People\n";
	}
	
	
	
	if( bMissingFields ) {
		alert( "We are sorry, but you must provide the following information before continuing:\n" + strFields );
		return false;
	}
	
	return true;
}
