function removeTableRow(trId, form_adi, modul, divadi){      
    $('#' + trId).addClass('tableAjax').fadeOut('slow', function() {
        $('#' + trId).remove();
        var degerler = $('#'+form_adi).serialize();
        $('div#'+divadi).html('...');
        $.ajax({
            type:'POST',
            url:'m.php?m='+modul,
            data:degerler,
            success:function(ajaxCevap){
                $('div#'+divadi).hide();
                $('div#'+divadi).html(ajaxCevap);            
                $('div#'+divadi).fadeIn("slow");
            },
            error:function(ajaxCevap){
                $('div#'+divadi).html('Bir problem oluştu. Lütfen bir süre sonra tekrar deneyiniz.');
                $('div#'+divadi).fadeIn("slow");
            }
        });
        return false;
        
    });         
}
       
function fg(form_adi, modul, divadi)
{         
    //alert(form_adi+" - "+modul+" - "+divadi);
    var degerler = $('#'+form_adi).serialize();
    $('div#'+divadi).html('<i>yükleniyor...</i>');
    $.ajax({
        type:'POST',
        url:'m.php?m='+modul,
        data:degerler,
        success:function(ajaxCevap){
            $('div#'+divadi).hide();
            $('div#'+divadi).html(ajaxCevap);            
            $('div#'+divadi).fadeIn("slow");
        },
        error:function(ajaxCevap){
            $('div#'+divadi).html('Bir problem oluştu. Lütfen bir süre sonra tekrar deneyiniz.');
            $('div#'+divadi).fadeIn("slow");
        }
    });
    return false;
}


