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