/*
$(document).ready(function(){
  
  $('a[href$=.mp3]').css('color','red');
  
  $('a[href$=.mp3]').bind("click", function(e){
      file_link = this.href;
      downLoadFile();
      return false;
    });

//    html = "<div id='downloader' style='display:none;'><br/><div id='file'></div><br/><center><input class='modalClose' type='button' value='Отмена'/></center><br/></div>";
    
//  $("body").append(html);

  
});

var file_link;


function downLoadFile()
{
    jQuery.get(file_link, function(response) {
//alert(response);
	    $('#file').html(response);
	    $('#downloader').modal();
    })
}


function ActivateKey()
{
    if (!$('#key').val().length)
    {
        alert('Укажите ключ активации!');
        return false;
    }

    var params = {
        key: $('#key').val()
    }

    jQuery.get(file_link, params, function(response) {
	    $('#file').html(response);
    })

}
*/