function InitializeCountDownControl(a){CountBack(a.SelectorId,a.Seconds,a.PrefixText,a.PrefixTextCSSStyle,a.CompletedText,a.DisplayTextCSSStyle,a.NotScheduledText,a.DaysText)}function CountBack(f,k,g,d,e,i,b,a){var h;var j=" %%H%%:%%M%%:%%S%%";if(k>=86400){j="%%D%% "+a+" "+j}h=j.replace(/%%D%%/g,Calculate(k,86400,100000));h=h.replace(/%%H%%/g,Calculate(k,3600,24));h=h.replace(/%%M%%/g,Calculate(k,60,60));h=h.replace(/%%S%%/g,Calculate(k,1,60));h="<span style='"+d+"'>"+g+"</span><span style='"+i+"'>"+h+"</span>";var c=false;if(k>0){$("#"+f).html(h)}else{if(k==-1){$("#"+f).html("<span style='"+i+"'>"+b+"</span>");if($("#"+f).attr("id")!=null){c=true}}else{$("#"+f).html("<span style='"+i+"'>"+e+"</span>");if($("#"+f).attr("id")!=null){c=true}}}if(!c){setTimeout("CountBack('"+f+"',"+(k-1)+",'"+g+"','"+d+"','"+e+"','"+i+"','"+b+"','"+a+"')",999)}};
