function setPrice(attendee, days, foodchoice) {
	var setCost;
	if (attendee == "DVM") {
		if (days == "Weekend") {setCost = "150.00";}
		else if (days == "Saturday") {setCost = "110.00";}
		else if (days == "Sunday") {setCost = "110.00";}
	} else if (attendee == "RVT") {
		if (days == "Weekend") {setCost = "75.00";}
		else if (days == "Saturday") {setCost = "40.00";}
		else if (days == "Sunday") {setCost = "40.00";}
	} else if (attendee == "Pub") {
		if (days == "Weekend") {setCost = "75.00";}
		else if (days == "Saturday") {setCost = "40.00";}
		else if (days == "Sunday") {setCost = "40.00";}
	} else if (attendee == "UCD") {
		if (days == "Weekend") {setCost = "15.00";}
		else if (days == "Saturday") {setCost = "10.00";}
		else if (days == "Sunday") {setCost = "10.00";}
	} else if (attendee == "Stu") {
		if (days == "Weekend") {setCost = "15.00";}
		else if (days == "Saturday") {setCost = "10.00";}
		else if (days == "Sunday") {setCost = "10.00";}
	} else {
		setCost = "150.00";
	}
	document._xclick.amount.value = setCost;
	document._xclick.cost.value = setCost;
}

function validateMe(field0, field1, field2) {
	if (field0 == "") {
		alert("You have not completed all the form elements.  Please make all the selections before proceeding.");
		return false;
	}
	if (field1 == "") {
		alert("You have not completed all the form elements.  Please make all the selections before proceeding.");
		return false;
	}
	if (field2 == "") {
		alert("You have not completed all the form elements.  Please make all the selections before proceeding.");
		return false;
	}
}