function VerificaDados(){

	if(document.registro.name.value=="" || document.registro.name.value.length < 5)
	{
		alert( "Preencha Seu Nome" );
			document.registro.name.focus();
				return false; 
	}
	
	if( document.registro.email.value=="" ||
	document.registro.email.value.indexOf('@')==-1 || 
	document.registro.email.value.indexOf('.')==-1 ||
    document.registro.email.value.length<5 )
	{
		alert( "O Email está preenchido incorretamente - Exemplo: (seunome@seuprovedor.com.br)." );
			document.registro.email.focus();
				return false;
	}
	
	if(document.registro.postcode.value=="" || document.registro.postcode.value.length < 8)
	{
		alert( "Preencha Seu CEP corretamente, exemplo: 00000-000" );
			document.registro.postcode.focus();
				return false; 
	}
	
	if(document.registro.add_1.value=="" )
	{
		alert( "Preencha Seu Endereço." );
			document.registro.add_1.focus();
				return false; 
	}
	
	if(document.registro.add_2.value=="" )
	{
		alert( "Preencha o complemento do Endereço." );
			document.registro.add_2.focus();
				return false; 
	}
	
	if(document.registro.town.value=="" )
	{
		alert( "Preencha Sua Cidade." );
			document.registro.town.focus();
				return false; 
	}
	
	if(document.registro.county.value=="Selecione um Estado")
	{
		alert( "Selecione seu Estado" );
			document.registro.county.focus();
				return false; 
	}
	
	
	if(document.registro.phone.value=="" || document.registro.phone.value.length < 10)
	{
		alert( "Preencha Seu Telefone com DDD." );
			document.registro.phone.focus();
				return false; 
	}
}