function evalTrips(theForm) {
	if(theForm.guided_river.options[theForm.guided_river.selectedIndex].value == "not specified")
	{
		alert ("Please select the RIVER you wish to visit");
		theForm.guided_river.focus();
		return 0;
	}
	if(theForm.trip_type.options[theForm.trip_type.selectedIndex].value == "not specified")
	{
		alert ("Please select the TYPE OF FISHING trip");
		theForm.trip_type.focus();
		return 0;
	}
	if(theForm.num_days.options[theForm.num_days.selectedIndex].value == "not specified")
	{
		alert ("Please select the NUMBER OF DAYS you wish to fish");
		theForm.num_days.focus();
		return 0;
	}	
	if(theForm.num_anglers.options[theForm.num_anglers.selectedIndex].value == "not specified")
	{
		alert ("Please select the NUMBER OF GUESTS that will be attending this trip");
		theForm.num_anglers.focus();
		return 0;
	}		
	if(theForm.accommodations.options[theForm.accommodations.selectedIndex].value == "not specified")
	{
		alert ("Please select whether or not you require ACCOMODATIONS for this trip");
		theForm.accommodations.focus();
		return 0;
	}
	if(theForm.angler_name.value == "")
	{
		alert ("Please enter your Name");
		theForm.angler_name.focus();
		return 0;
	}
	if((theForm.phone.value == "") && (theForm.email.value == ""))
	{
		alert ("Please enter either a PHONE NUMBER or EMAIL so we can contact you");
		theForm.phone.focus();
		return 0;
	}
	//theForm.action = "scripts/mail/guided_river_trip.php";
	theForm.submit();
}

function evalJardines(theForm) {
	if(theForm.accommodation.options[theForm.accommodation.selectedIndex].value == "not specified")
	{
		alert ("Please select your desired ACCOMMODATIONS");
		theForm.accommodation.focus();
		return 0;
	}
	if(theForm.num_anglers.options[theForm.num_anglers.selectedIndex].value == "not specified")
	{
		alert ("Please select the NUMBER OF GUESTS that will be attending this vacation");
		theForm.num_anglers.focus();
		return 0;
	}		
	if(theForm.angler_name.value == "")
	{
		alert ("Please enter your Name");
		theForm.angler_name.focus();
		return 0;
	}
	if((theForm.phone.value == "") && (theForm.email.value == ""))
	{
		alert ("Please enter either a PHONE NUMBER or EMAIL so we can contact you");
		theForm.phone.focus();
		return 0;
	}
	//theForm.action = "scripts/mail/guided_river_trip.php";
	theForm.submit();
}

function evalXmas(theForm) {
	if(theForm.trip_date.options[theForm.trip_date.selectedIndex].value == "not specified")
	{
		alert ("Please select your desired VACATION DATE");
		theForm.trip_date.focus();
		return 0;
	}
	if(theForm.num_anglers.options[theForm.num_anglers.selectedIndex].value == "not specified")
	{
		alert ("Please select the NUMBER OF GUESTS that will be attending this vacation");
		theForm.num_anglers.focus();
		return 0;
	}		
	if(theForm.angler_name.value == "")
	{
		alert ("Please enter your Name");
		theForm.angler_name.focus();
		return 0;
	}
	if((theForm.phone.value == "") && (theForm.email.value == ""))
	{
		alert ("Please enter either a PHONE NUMBER or EMAIL so we can contact you");
		theForm.phone.focus();
		return 0;
	}
	//theForm.action = "scripts/mail/guided_river_trip.php";
	theForm.submit();
}

function evalSeychelles(theForm) {
	if(theForm.num_anglers.options[theForm.num_anglers.selectedIndex].value == "not specified")
	{
		alert ("Please select the NUMBER OF GUESTS that will be attending this vacation");
		theForm.num_anglers.focus();
		return 0;
	}		
	if(theForm.angler_name.value == "")
	{
		alert ("Please enter your Name");
		theForm.angler_name.focus();
		return 0;
	}
	if((theForm.phone.value == "") && (theForm.email.value == ""))
	{
		alert ("Please enter either a PHONE NUMBER or EMAIL so we can contact you");
		theForm.phone.focus();
		return 0;
	}
	theForm.submit();
}
function evalStandard(theForm) {
	if(theForm.num_anglers.options[theForm.num_anglers.selectedIndex].value == "not specified")
	{
		alert ("Please select the NUMBER OF GUESTS that will be attending this vacation");
		theForm.num_anglers.focus();
		return 0;
	}		
	if(theForm.angler_name.value == "")
	{
		alert ("Please enter your Name");
		theForm.angler_name.focus();
		return 0;
	}
	if((theForm.phone.value == "") && (theForm.email.value == ""))
	{
		alert ("Please enter either a PHONE NUMBER or EMAIL so we can contact you");
		theForm.phone.focus();
		return 0;
	}
	theForm.submit();
}
