function enviaform(form){
	var aux=true;
	var txt = $('#news_nome').val();
	if(!(txt.length<=0)){
		txt = $('#news_mail').val();
		if((txt.length != 0) && ((txt.indexOf("@") < 1) || (txt.indexOf('.') < 7))){
   			alert('Email incorreto.');
			aux=false;
			$('#news_mail').focus();
		}
	}
	if(aux){
		 $(form).submit();
	}
}
