function checkEntryForm(){

	var formError = new Boolean(false);
	
	var activityObj = document.getElementById('activity');
	var commentsObj = document.getElementById('comments');
	
	if(activityObj.value.length < 10 && commentsObj.value.length < 10){
		formError = true;
	}
	
	if(formError == true){
		alert('Please describe the fraudulent activity and/or type your comments in the appropriate fields before you continue!');
		return false;
	} else {
		return true;
	}
}