/**
 * @author jose miguel lueiza
 */
function search(){

    $("#res_form").html('<div align = "center"><img src = "images/loader.gif"></img></div>');
    
    var rut = document.getElementById("rut").value;
    
    var factura = document.getElementById("numero_factura").value;
    
    $.ajax({
        type: "POST",
        url: "resultado.php",
        data: "rut=" + rut + "&factura=" + factura,
        success: function(html){
        
            $("#res_form").animate({
                opacity: .0
            }, 100, "linear", function(){
                $("#res_form").html(html);
            }).animate({
                opacity: 1
            }, {
                duration: 500,
                queue: true
            });
                       
        }
    });
    
    return false;
    
}
