function enviardados(){
	

if(document.myform.cpf.value=="" || document.myform.cpf.length < 11)
		{
		alert( "Preencha o campo CPF corretamente!" );
		document.myform.cpf.focus();
		return false;
		}



if( document.myform.email.value=="" || document.myform.email.value.indexOf('@')==-1 || document.myform.email.value.indexOf('.')==-1 )
		{
		alert( "Preencha o campo E-MAIL corretamente!" );
		document.myform.email.focus();
		return false;
		}
	


if(document.myform.fone.value=="" || document.myform.fone.length < 9)
		{
		alert( "Preencha o campo Fone corretamente!" );
		document.myform.fone.focus();
		return false;
		}
	

		
				
		return true;
		} 
	

