// JavaScript Document
<!--
// ===========================================================
// script: Checa e-mail
// ===========================================================
//
function validacontato() 	{

		if (document.getElementById('nome').value == "")
		{
			window.alert("Fale seu nome para gente");
			return false;
		}

		else if (!(/^[a-z0-9\._-]+@+[a-z0-9\._-]+\.+[a-z]{2,4}$/.test(document.getElementById('emailcontato').value)))
		{
			window.alert("Favor informar um email válido.");
			return false;
		}

		else if (document.getElementById('comentariopost').value == "")
		{
			window.alert("Deixe seu comentário :)");
			return false;
		}

		else
		{
			return true;
		}

} 
function validaemail() 	{

		if (!(/^[a-z0-9\._-]+@+[a-z0-9\._-]+\.+[a-z]{2,4}$/.test(document.getElementById('email').value)))
		{
			window.alert("Favor informar um e-mail válido.");
			return false;
		}

		else
		{
			return true;
		}

} 

