function maildados(){
	
	if(document.frmemail.nome_remetente.value=="")
	{
		alert( "Não pode enviar sem o nome!" );
			document.frmemail.nome_remetente.focus();
				return false;
	}
	
	if( document.frmemail.email_remetente.value=="" || document.frmemail.email_remetente.value.indexOf('@')==-1 || document.frmemail.email_remetente.value.indexOf('.')==-1 )
	{
		alert( "Preencha campo E-MAIL corretamente!" );
			document.frmemail.email_remetente.focus();
				return false;
	}
	
	if(document.frmemail.nome_destino.value=="")
	{
		alert( "Não pode enviar sem o nome do destinatário!" );
			document.frmemail.nome_destino.focus();
				return false;
	}
	
	if( document.frmemail.email_destino.value=="" || document.frmemail.email_destino.value.indexOf('@')==-1 || document.frmemail.email_destino.value.indexOf('.')==-1 )
	{
		alert( "Preencha o E-MAIL do destinatário corretamente!" );
			document.frmemail.email_destino.focus();
				return false;
	}
	
		
return true;
}
