//////////////////////////////////////////////////////
// This does some js validation before passing info on to cgi
function submitForm (form) {

	if (form.name == "packingList") {
	
		if (document.packingList.first_name.value =="") {
			alert( "Please enter your name.");
			document.packingList.first_name.focus();
			return false;
		}
		
		
	else if (
		document.packingList.bathroom_stuff.value =="" && 
		document.packingList.books.value =="" && 
		document.packingList.clothes.value =="" && 
		document.packingList.games.value =="" && 
		document.packingList.movies.value =="" && 
		document.packingList.music.value =="" && 
		document.packingList.other.value =="" && 
		document.packingList.pajamas.value =="" && 
		document.packingList.toothbrush.value =="" && 
		document.packingList.writing.value =="" 	
	) {
	
	alert("Are you sure you don't need to bring ANYTHING?!");
	return false;
	
	}	
	
	} // end if (form.name == );	

} // submitForm



