
	var pTopic ="Please select a topic"
	var pName = "Customer Name"
	var pCountry = "Country"
	var pEmail = "E-mail Address"
	
	// i is an abbreviation for "invalid"
	var iEmail = "The Email Address field must be a valid email address (e.g. yourname@domain.com). Please re-enter it now."
	var iConfirmEmail = "You must enter the same Email twice. Please re-enter Confirm Email now."
	
	function Reservation_Form_Validator( theForm )
	{  		
	

		var Response = false
		Response = (	
						checkString(theForm.elements["topic"],pTopic) &&
						checkString(theForm.elements["name"],pName) &&
						checkString(theForm.elements["country"],pCountry) &&
						checkEmail(theForm.elements["email"], pEmail)

		  			)
					
					
	return (Response);						
	}
