function checkdata() {
	with(document.Contatos) {	
		        if (nome.value == "") {
			alert("Favor digite seu nome!");
			Nome.focus();
			return false; 
		}
		        if (telefone.value == "") {
			alert("Preencha o campo email!");
			Email.focus();
			return false; 
		}
                        if (endereco.value == "") {
			alert("Preencha o campo assunto!");
			Assunto.focus();
			return false; 
		}
                        
		 if (identidade.value == "") {
			alert("Preencha o campo assunto!");
			Assunto.focus();
			return false; 
		}
                       submit();
	}
}	
