function checkSubmission (thisForm) {
	if ( thisForm.message.value == '' ) {
		//checkRequired('message');
    	alert('Oops! You didn\'t type a message!');
    	return false;     
    }
    else if (thisForm.email.value.indexOf('@') == -1 || thisForm.email.value.indexOf('.') == -1 || thisForm.email.value == '') {
		//checkEmail();
    	alert ('Please enter a valid email address');
    	return false;
    }
    return true;    		
}	
