
function validateForm( )
{
	var objFV = new FormValidator("frmReservation");

	if (!objFV.validate("searchid", "B", "Please enter the Reservation ID."))
		return false;
		
	if (!objFV.validate("searchemail", "B,E", "Please enter the valid Email Address."))
		return false;
		
	return true;
}