function iframeDownload(url) {
//    alert('going to add iframe download with url' + url);
    try { // catch any erroneous errors
        var iframe = document.createElement("IFRAME");
        iframe.id = "download-iframe";
        iframe.width = 1;
        iframe.height = 1;
        iframe.src = url;
        document.body.appendChild(iframe);
    }
    catch (err) {
        alert(err.message);
    }
}

function reloadThePage(time){
    setTimeout( "location.reload()", time);
}

