
		// *****************************
		// **       Data JS File      **
		// **     BealeARTS.co.uk     **
		// **       13/06/2003        **
		// *****************************
		
		
		// Tel Number
		TelephoneNumber = '+44 (0)1227 709430';
		
		// Main E-mail address
		EmailAddress = 'book@bowerbb.freeserve.co.uk';
		
		// Cost of Rooms
		DoubleRoomForTwo = 'from £68.00';
		DoubleRoomForOne = 'from £48.00';
		SingleRoom = 'from £40.00';
		
		Deposit = '£25.00';
		
		
		// Booking Accommodation Options
		BookingList = new Array(
			'Double Room, with two sharing - ' + DoubleRoomForTwo,
			'Double Room, single occupancy - ' + DoubleRoomForOne,
			'Twin Room, with two sharing - ' + DoubleRoomForTwo,
			'Twin Room, single occupancy - ' + DoubleRoomForOne,
			'Single Room, subject to availability - ' + SingleRoom
		)	
	