function doSubmit(){
	var gradDate, entryDate
	var theForm = document.frmEAUser
	if (!validText(theForm.txtMailListLastName,"Last Name",1,20,true) ) return false;
	if (!validText(theForm.txtMailListFirstName,"First Name",1,20,true) ) return false;	
	if (!validEmail(theForm.txtMailListEmail,"Email Address",false) )return false;
	
	entryDate = theForm.selEntryMonth.options[theForm.selEntryMonth.selectedIndex].value + "/" + theForm.selEntryDay.options[theForm.selEntryDay.selectedIndex].value + "/" + theForm.selEntryYear.options[theForm.selEntryYear.selectedIndex].value;
	gradDate = theForm.selGradMonth.options[theForm.selGradMonth.selectedIndex].value +"/" + theForm.selGradDay.options[theForm.selGradDay.selectedIndex].value + "/" + theForm.selGradYear.options[theForm.selGradYear.selectedIndex].value;


	//Validation for Entrydate to be less the Graduation Date
	if (checkDate(entryDate)) {
		if (checkDate(gradDate)) {
			if (Date.parse(entryDate) >= Date.parse(gradDate)) { 
				alert("The Graduation date should be greater then the Entry date") 
				theForm.selEntryMonth.focus();
				return false;
			}
		} 
		
	}
	
	return true;
}

