function sendData(album)
{
    $('#preloader').html('<table width="560px" height="60px" border="0" cellspacing="0" cellpadding="0"><tr><td align="left"><img src="loader.gif"></img></td></tr></table>');
    $('#music_download').hide();

    $.post("http://gol.ge/le1_getalbum.php", {album: album},
        function(data){
            $('#preloader').html('&nbsp');
            $('#music_download').show();
            window.location.href = data;
        });
}

