function calcage2(secs, num1, num2) {
  s = ((Math.floor(secs/num1))%num2).toString();
  if (LeadingZero2 && s.length < 2)
    s = "0" + s;
  return s;
}

function CountBack2(secs) {
  if (secs < 0) {
    document.getElementById("cntdwn2").innerHTML = FinishMessage2;
    return;
  }
  DisplayStr2 = DisplayFormat2.replace(/%%D%%/g, calcage2(secs,86400,100000));
  DisplayStr2 = DisplayStr2.replace(/%%S%%/g, calcage2(secs,20,10000000000000000000));

  document.getElementById("cntdwn2").innerHTML = DisplayStr2;
  if (CountActive2)
    setTimeout("CountBack2(" + (secs+CountStepper2) + ")", SetTimeOutPeriod2);
}

function putspan2(BackColor2, ForeColor2) {
 document.write("<span id='cntdwn2' style='margin: 0 0 15px 203px; background-color:" + BackColor2 + 
                "; color:" + ForeColor2 + "'></span>");
}

if (typeof(BackColor2)=="undefined")
  BackColor2 = "white";
if (typeof(ForeColor2)=="undefined")
  ForeColor2= "";
if (typeof(TargetDate2)=="undefined")
  TargetDate2 = "2011/03/02 0:00";
if (typeof(DisplayFormat2)=="undefined")
  DisplayFormat2 = "%%S%%";
if (typeof(CountActive2)=="undefined")
  CountActive2 = false;
if (typeof(FinishMessage2)=="undefined")
  FinishMessage2 = "";
if (typeof(CountStepper2)!="number")
  CountStepper2 = -1;
if (typeof(LeadingZero2)=="undefined")
  LeadingZero2 = true;


CountStepper2 = Math.ceil(CountStepper2);
if (CountStepper2 == 0)
  CountActive2 = false;
var SetTimeOutPeriod2 = (Math.abs(CountStepper2)-1)*1000 + 990;
putspan2(BackColor2, ForeColor2);
var dthen2 = new Date(TargetDate2);
var dnow2 = new Date();
if(CountStepper2>0)
  ddiff2 = new Date(dnow2-dthen2);
else
  ddiff2 = new Date(dthen2-dnow2);
gsecs2 = Math.floor(ddiff2.valueOf()/1000);
CountBack2(gsecs2);

