I am using the following to pause the javascript for a few seconds:
setTimeout(start_countdown(),3000);
It does not work, the function is
write instead
setTimeout(start_countdown, 3000);
without parens () the second example could be also written as
()
setTimeout(function() { alert('hi'); }, 3000);