function VerificaDados() {
with (document.dados){
	 if (nome.value.length=="") {
		alert("Por favor, digite seu nome!");
		nome.focus();
		return false;
      }
	if (email.value.length==0) {
		alert("Por favor, digite o seu email!");
		email.focus();
		return false;
	}
    if (email.value.indexOf('@' , 0) == -1){
		alert("E-mail inválido!");
		email.focus();
		return false;		
		}
    if (email.value.indexOf('.' , 0) == -1){
		alert("E-mail inválido!");
		email.focus()
		return false;		
		}
   if (email.value.length<5) {
		alert("E-mail inválido!");
		email.focus()
		return false;
      }
	    if (mensagem.value.length=="") {
		alert("Por favor, digite o seu interesse!");
		mensagem.focus()
		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 += ".";
	}
	
}

//

