Continue
JavaScript needs to be enabled in order to be able to continue.
(function(){
var message = "%d seconds before you can continue";
// seconds before link becomes visible
var count = 10;
var countdown_element = document.getElementById("countdown");
var download_link = document.getElementById("download_link");
var timer = setInterval(function(){
// if countdown equals 0, the next condition will evaluate to false and the else-construct will be executed
if (count) {
// display text
countdown_element.innerHTML...