
var emailfilter=/^\w+[\+\.\w-]*@([\w-]+\.)*\w+[\w-]*\.([a-z]{2,4}|\d+)$/i

function checkmail(e){
var returnval=emailfilter.test(e.value)
	if (returnval==false){
		alert("The email address you entered is not valid. Please check to make sure that \nyou entered the correct address. \n\nThank you.")
		e.select()
		this.focus()
	}
		else if (document.form1.topic.value == "" || document.form1.topic.selectedIndex==0) {
		alert("Please select the topic from dropdown.");
		this.focus();
		return false
	}
	else if (document.form1.question.value == "") {
		alert("Please enter a description of your issue in the \"Your Question\" box.");
		this.focus();
		return false
	}
return returnval
}



