function submitSearch(form, defaultQuestion) {
	with(form) {			
		if (question.value == '' || question.value == defaultQuestion) {
			return false;					
		} else {
			return true;
		}
	}
}