

function VerificaDados() {
with (document.dados){
	if (nome.value.length==0) {
		alert("Por favor, digite o seu nome!");
		return false;
	}
	if (email.value.length==0) {
		alert("Por favor, digite o seu email!");
		return false;
	}
    if (email.value.indexOf('@' , 0) == -1){
		alert("E-mail inválido!");
		return false;		
		}
    if (email.value.indexOf('.' , 0) == -1){
		alert("E-mail inválido!");
		return false;		
		}
   if (email.value.length<5) {
		alert("E-mail inválido!");
		return false;
      }
	  	alert("OBRIGADO\nSua mensagem foi enviada com sucesso!!\nEm breve entraremos em contato.");
}
}

function Mascara(formato, objeto)

{
	campo = eval(objeto);
	
	//TELEFONE
	if(formato=='TELEFONE'){
		if(campo.value.length == 0)
			campo.value += "(";
		else if(campo.value.length == 3)
			campo.value += ") ";
		else if(campo.value.length == 9)
			campo.value += ".";
	}
	
}

//
