// Contato

function Esvazia(valor_campo){
if (valor_campo.value == valor_campo.defaultValue){
valor_campo.value='';
}
}

function padrao(valor_campo){
if (valor_campo.value == ''){
valor_campo.value=valor_campo.defaultValue;
}
}

function EsvaziaText(){
if (document.getElementById("mensagem").value == "Mensagem"){
	document.getElementById("mensagem").value = "";
}
}

function padraoText(){
if (document.getElementById("mensagem").value == ""){
	document.getElementById("mensagem").value = "Mensagem";
}
}

function ValidaContato(){
	
	var emailER =/^[\w!#$%&'*+\/=?^`{|}~-]+(\.[\w!#$%&'*+\/=?^`{|}~-]+)*@(([\w-]+\.)+[A-Za-z]{2,6}|\[\d{1,3}(\.\d{1,3}){3}\])$/;
			
		if(document.contato.nome.value == "" || document.contato.nome.value == "Nome"){
			document.getElementById("avisocontato").innerHTML="INFORME SEU NOME";
			document.contato.nome.focus();return false;
			}
			if(document.contato.email.value == "" || document.contato.email.value == "E-mail"){
			document.getElementById("avisocontato").innerHTML="INFORME SEU E-MAIL";
			document.contato.email.focus();return false;
			}
			if(!emailER.test(document.contato.email.value)){
			document.getElementById("avisocontato").innerHTML="INFORME UM E-MAIL VÁLIDO";
			document.contato.email.focus();return false;
			}
			if(document.contato.tel.value == "" || document.contato.tel.value == "Telefone"){
			document.getElementById("avisocontato").innerHTML="INFORME SEU TELEFONE";
			document.contato.tel.focus();return false;
			}
			if(document.contato.mensagem.value == "" || document.contato.mensagem.value == "Mensagem"){
			document.getElementById("avisocontato").innerHTML="ESCREVA SUA MENSAGEM";
			document.contato.mensagem.focus();return false;
			}
}


// Comentários

function ValidaCommentpg(){
	
	var emailER =/^[\w!#$%&'*+\/=?^`{|}~-]+(\.[\w!#$%&'*+\/=?^`{|}~-]+)*@(([\w-]+\.)+[A-Za-z]{2,6}|\[\d{1,3}(\.\d{1,3}){3}\])$/;
			
		if(document.form_c.nome.value == "" || document.form_c.nome.value == "Nome"){
			document.getElementById("aviso").innerHTML="INFORME SEU NOME";
			document.form_c.nome.focus();return false;
			}
			if(document.form_c.email.value == "" || document.form_c.email.value == "E-mail"){
			document.getElementById("aviso").innerHTML="INFORME SEU E-MAIL";
			document.form_c.email.focus();return false;
			}
			if(!emailER.test(document.form_c.email.value)){
			document.getElementById("aviso").innerHTML="INFORME UM E-MAIL VÁLIDO";
			document.form_c.email.focus();return false;
			}
			if(document.form_c.mensagem.value == "" || document.form_c.mensagem.value == "Mensagem"){
			document.getElementById("aviso").innerHTML="ESCREVA SUA MENSAGEM";
			document.form_c.mensagem.focus();return false;
			}
}
