function checkdata() {
	with(document.assinatura) {	
		 if (nome.value == "") {
			alert("Preencha o campo NOME!");
			cidade.focus();
			return false; }
		 if (tel_residencial.value == "") {
			alert("Preencha o campo Telefone residencial");
			cidade.focus();
			return false; }
		 if (email.value == "") {
			alert("Preencha o campo E-MAIL");
			cidade.focus();
			return false; }

                        submit();
	}
}	


