function validateForm(form) {
	if (form.question.value == "") {
	   alert("Please enter the question you wish to ask the board."); 
	   form.question.focus( ); 
	   return false; 
	}
}
