function faqSearch() {
	var theform2 = document.AEFAQ;
	var rawwords2 = theform2.questionbox.value;
	
	if (rawwords2 == '') { 
		alert('Please enter your question.');
	
	} else {
		//at what point is all the space and character stripping done?
		var query = escape(rawwords2);

		window.location.href = 'aeresults.aspx?Quser=' + query;
	}
}
