$(function() {
    $('#go').click(function(){
    	var email = $('#mailnews').attr('value')
 
		if(email != '') {
	    	$.getScript('../includes/buscanews.php?email='+email, function(data){
				
				$('#statusnews').html('<img src="../images/ajax-loader.gif"/> '+texto1);			
				
				if(resultnews.resultado == 0){
					if(VerEmail(email)){
						$.getScript('../inserenews.php?email='+email, function(data){1})
						$('#statusnews').html('<img src="../images/ok.png"/> '+texto2);
						$('#mailnewsok').val("sim");
					} else {
						$('#statusnews').html('<img src="../images/erro.png"/> '+texto3);
						$('#mailnewsok').val("nao");
					}
				}
					
				else {
					$('#statusnews').html('<img src="../images/erro.png"/> '+texto4);
					$('#mailnewsok').val("nao");
				}
			})
		}
		else{
			$('#statusnews').html('<img src="../images/erro.png"/> '+texto5);
			$('#mailnewsok').val("nao");
		}
    	return false
    })
})

