// Set the delay on the 
function download_alert_popup()
{
setTimeout("download_alert.load()", 401);
}

$(function()
{
  $('#download_format a').click(function()
  {
    var input = $('#download_format input#download_url');
    var url = input.val().replace(/GSUBTYPELOWER/g,
      $(this).attr('rel').toLowerCase()).replace(/GSUBTYPE/g,
      $(this).attr('rel').toUpperCase());
  
   window.open(url, "Music Box Download", "status=1, width=1px, height=1px");
    //window.open(url, "", "status=1, width=1px, height=1px");
    download_overlay.close();
  });
  
  $('#download_project_format a').click(function()
  {
    var input = $('#download_project_format input#download_project_url');
    var url = input.val().replace(/GSUBTYPELOWER/g, $(this).attr('rel').toLowerCase()).replace(/GSUBTYPE/g, $(this).attr('rel').toUpperCase());
    window.location = url;
    download_project_overlay.close();
    
    download_alert_popup();
  });
});