/*SCRIPT VOOR KERSTCONTENT*/
GoLiveMonth = "12"  // Month you want your content to start displaying. Two digits.
GoLiveDay = "24"      // Day you want your content to start displaying. Two digits.
GoLiveHour = "19"     // Hour you want your content to start displaying. Two digits.
ExpireMonth = "12"   // Month you want your content to stop displaying. Two digits.
ExpireDay = "26"   // Day you want your content to stop displaying. Two digits.
ExpireHour = "24"   // Hour you want your content to stop displaying. Two digits.
GoLiveDate = GoLiveMonth + GoLiveDay + GoLiveHour;  // puts GoLive month, day and hour together.
ExpireDate = ExpireMonth + ExpireDay + ExpireHour;  // puts Expire month, day and hour together.
Now = new Date();
Month = Now.getMonth();
Day = Now.getDate();
Hour = Now.getHours();
CorrectedMonth = Month + 1; //month - JavaScript starts at "0" for January, so we add "1"
if (CorrectedMonth < 10)
{  /* if less than "10", put a "0" in front of the number. */
var PositionedMonth = "0" + CorrectedMonth;
}
else
{
PositionedMonth = CorrectedMonth;
}
if (Day < 10)
{  /* if less than "10", put a "0" in front of the number. */
var PositionedDay = "0" + Day;
}
else
{
PositionedDay = Day;
}
Nu = PositionedMonth+ "" +PositionedDay+ "" +Hour;  // puts PositionedMonth, PositionedDay and Hour together.
if ((Nu >= GoLiveDate) && (Nu <= ExpireDate))
{// ALS KERST
document.write('<IMG WIDTH=350 HEIGHT=50 VSPACE=3 SRC="gfx/xmas_border.png" ALT="" BORDER=0><BR>\n');
}
else
{//ALS GEEN KERST
document.write('');
}

