If you're hard coding the date to count down to, you need to change the line:
Code:
var christmas=new cdtime("countdowncontainer2", "July 27, "+thischristmasyear+" 0:0:00")
Which currently dynamically counts down to next year's Christmas, to something like:
Code:
var christmas=new cdtime("countdowncontainer2", "March 23, 2009 18:25:00")
Obviously change March 23, 2009 18:25:00 to the desired date.
Also, note that your page is missing a <body> tag, which can cause problems. Add it to your page:
Code:
<body>
<!-- located in code for LCD countdow to appear -->
<div id="countdowncontainer2"></div>
Bookmarks