function startDownload()
{
    var theLink = document.getElementById('download-link').getAttribute('href');
    window.location = theLink;
}
setTimeout("startDownload();", 3000);