It shows now Uncaught SyntaxError: unexpected token: '{'
var func = "CountBack"+cnt;
window[func](gsecs){};
window[func] = new Function(secs){
if (secs < 0) {
document.getElementById("cntdwn"+cnt).innerHTML = FinishMessage;
return;
}
document.getElementById("cntdwn"+cnt).innerHTML = DisplayStr;
if (CountActive)
setTimeout("CountBack(" + (secs+CountStepper) + ")", SetTimeOutPeriod);
};