$('#btOfertas').click(function(){
	
	$(this).attr('disabled','disabled');
		
	if(!boxInfo.validaDados('#formOfertas')){$('#btOfertas').removeAttr('disabled'); return;}
	boxInfo.boxOpen("Aguarde...", false, true);
	$.ajax({
		      type: "GET",
					url: "http://www.jettech.com.br/ajax/ajax.boletim.enviar.php",
					data: $('#formOfertas').serialize(),
					success: function(retorno){
					            boxInfo.boxOpen();
										  $('#btOfertas').removeAttr('disabled');
									    $('#resultado').html(retorno);
									 
					},
					error: function(jqXHR, textStatus, errorThrown){
						boxInfo.boxOpen();
					}
  });
});
