var f = document.createElement("iframe");
document.body.appendChild(f);
var as = document.getElementsByTagName("a");
var i = 0;
function download() {
  for (;i<as.length; i++) {
    if (as[i].innerHTML == "Download") {
      as[i].style.fontWeight = "bold";
      as[i].style.fontStyle = "italic";
      f.src = as[i].href;
      i++;
      setTimeout("download()",2000);
      break;
    }
  }
}
download();
void(0);

