<!--
function submitForm() {

   if ((form1.formDestination.selectedIndex == 0) ||
       (form1.formDays.selectedIndex == 0) ||
	   (form1.formTime.selectedIndex == 0)) { 
	   alert("Please select a destination, a day, and a time. ");
  } else { document.form1.submit(); }
}

function goto_URL(object) {

	if (form2.selectCaucus.selectedIndex != 0) { window.location.href = object.options[object.selectedIndex].value; }
}

// -->