/*********************************************************************
	List of required fields appearing in the two pages in the TB
	booking form
	
	Each array element consists of an array, with the name
		of the field as the first element, the name of the
		associated question as the second
		
	Started: 6/2/2003
	Last updated: 6/2/2003
	(c) 2003, A. Craig. All rights reserved.
	
*********************************************************************/

//
//Booking details lists
//
//var booking_req_txt = new Array( ['main_date', 'Desired Date'], ['time_start', 'Start Time'], ['time_stop', 'Stop Time'],); //txt field names
var booking_req_txt = new Array(); //txt field names
booking_req_txt[0] = ['main_date', 'Desired Date'];
booking_req_txt[1] = ['time_start', 'Start Time'];
booking_req_txt[2] = ['time_stop', 'Stop Time']; 
var booking_req_chk = new Array(); //check field names
booking_req_chk[0] = ['func', 'Function Room'];
booking_req_chk[1] = ['foyer', 'Entrance Foyer'];

//
//Contact details lists
//
var contact_req_txt = new Array(); //txt field names
contact_req_txt[0] = ['name', 'Your Name'];
contact_req_txt[1] = ['email', 'Email Address'];