function checkContatoFields() {
	if (document.FormContato.Name.value == "") {
		alert("Please, insert your name in the field.");
		document.FormContato.Name.focus();
		return false;
	} else if (document.FormContato.Email.value == "") {
		alert("Please, insert your email in the field.");
		document.FormContato.Email.focus();
		return false;
	} else if (document.FormContato.Message.value == "") {
		alert("Please, insert your message in the field for send.");
		document.FormContato.Message.focus();
		return false;
	}
	
} 