function checkdata() {
	with(document.form1) {	
		        if (nome.value == "") {
			alert("Favor digite seu nome!");
			nome.focus();
			return false; 
		}
		        if (casa.value == "") {
			alert("Preencha o campo Telefone Casa!");
			casa.focus();
			return false; 
		}		        if (bi.value == "") {			alert("Preencha o campo BI!");			bi.focus();			return false; 		}		    if (contribuinte.value == "") {			alert("Preencha o campo Contribuinte!");			contribuinte.focus();			return false; 		}   if (social.value == "") {			alert("Preencha o campo Segurança Social!");			social.focus();			return false; 		}
					   submit();
					  
	}
}	