function CheckMail(thisMail) {
if (thisMail.name.value == "") {
		alert('Enter Name!');
		return false;		
		}
	else if (thisMail.email.value == "") {
		alert('Enter E-mail!');
		return false;
		}
	else if (thisMail.comments.value == "") {
		alert('Enter Message!');
		return false;		
		}
	return true;
}