<!--
function checkdata() {
	with(document.Contatos) {	
		        if (nome.value == "") {
			alert("Preencha o campo Nome!");
			nome.focus();
			return false; 
		}
		        if (email.value == "") {
			alert("Preencha o campo E-mail!");
			email.focus();
			return false; 
		}
                        if (cidade.value == "") {
			alert("Preencha o campo Cidade!");
			cidade.focus();
			return false; 
		}
		
		                        if (estado.value == "") {
			alert("Preencha o campo Estado!");
			estado.focus();
			return false; 
		}
                        if (assunto.value == "") {
			alert("Preencha o campo Assunto!");
			assunto.focus();
			return false; 
		}       
                       submit();
	}
}	
-->