(function(){var b={prefix:"",suffix:"",frequency:1000,};var a=function(f,c,d){if(typeof f=="function"){this.display=f}else{this.el=(typeof f=="string")?document.getElementById(f):f}this.ondone=c;this.options={};for(var e in b){this.options[e]=b[e]}if(d){for(var e in d){this.options[e]=d[e]}}this.counter=10};a.prototype={start:function(e){if(this.timerID){this.stop()}if(e){this.counter=parseInt(e)}var c=this;var d=function(){if(c.display){c.display(c.counter)}if(c.el){c.el.innerHTML=(c.options.prefix?c.options.prefix:"")+c.counter+(c.options.suffix?c.options.suffix:"")}if(c.counter<=0){c.timerID=null;if(typeof c.ondone=="function"){c.ondone(c.el)}if(typeof c.ondone=="string"){window.location.href=c.ondone}return}c.timerID=setTimeout(arguments.callee,c.options.frequency);c.counter-=1};d()},stop:function(){if(this.timerID){clearTimeout(this.timerID);this.timerID=null}},resume:function(){this.start()},isRunning:function(){return !!this.timerID},};window.Countdown=a})();