function initPage() {
  $("#agreement div.ajaxControl, div.infoplatecontent div.ajaxControl").ajaxcontrol({onInitDone:initPage2});
}
function initPage2() {
  $("#Content2").find("a").click(function(){
    if (!$("#cbagree").attr("checked")) {
      alert("You need to accept the license agreement");
      return false;
    }
    else {
      DownloadPage.FileDownloaded($(this).attr("href"));
    }
  });
}

