<!--script modified by KayPoe Nov, 2001--Hide JavaScript from Java-Impaired Browsers
function clock() {
if (!document.layers && !document.all) return;
  today = new Date();
  intDate = today.getDate();
  intHours = today.getHours();
  intMinutes = today.getMinutes();
  intSeconds = today.getSeconds();
  intMonth = today.getMonth()+1 ;
  intYear = today.getFullYear();
  hours = intHours;
  hours = (23 - hours);
  minutes = intMinutes;
  minutes = (59 - minutes);
  seconds = intSeconds;
  seconds = (59 - seconds);

if (intYear % 4 == 0 && intYear % 100 != 0 || intYear % 400 == 0){
if (intMonth == 1)  {month = "I hope you enjoyed the Holidays!<br>Ready to start the countdown again?<br>OK....here we go! &nbsp;You have to wait a whole (sigh!)<br>"; date = (359 - intDate);}
if (intMonth == 2)  {month = "January is history! &nbsp;Now you have to wait only<br>"; date = (328 - intDate);}}


else{
if (intMonth == 1)  {month = "Hope your Christmas was terrific! &nbsp;It's a brand<br>new year now, and here we go again! &nbsp;Ready?<br>&nbsp;<br>We have to wait a whole (sigh!)<br>"; date = (358 - intDate);}
if (intMonth == 2)  {month = "January is history! &nbsp;Now you have to wait only<br>"; date = (327 - intDate);}}

  if (intMonth == 3)  {month = "Only(?) another<br>"; date = (299 - intDate);}
  if (intMonth == 4)  {month = "You're making progress! &nbsp;Only another<br>"; date = (268 - intDate);}
  if (intMonth == 5)  {month = "Only "; date = (238 - intDate);}
  if (intMonth == 6)  {month = "About half way there!  Only another<br>"; date = (207 - intDate);}
  if (intMonth == 7)  {month = "Only "; date = (177 - intDate);}
  if (intMonth == 8)  {month = "Hang in there! &nbsp;Now there are only<br>"; date = (146 - intDate);}
  if (intMonth == 9)  {month = "September already! &nbsp;Only another<br>"; date = (115 - intDate);}
  if (intMonth == 10) {month = "Less than 100 days to go!<br>You have to wait only<br>"; date = (85 - intDate);}
  if (intMonth == 11) {month = "It's getting close! &nbsp;Now there are only<br>"; date= (54 - intDate);}
  if (intMonth == 12) {month = "Whew! &nbsp;December at last!<br>Check this out! &nbsp;WOW! &nbsp;Only<br>"; date = (24 - intDate);}

  if (date == 1 ){date = ("0"+date+" day,&nbsp; ");}
  if (date != 1 && date < 10 && date >=0){date = ("0"+date+" days, ");}
  if (date > 9){date = (date+" days, ");}
  if (hours ==1 ){hours = ("0"+hours+" hour,&nbsp; ");}
  if (hours != 1 && hours < 10){hours = ("0"+hours+" hours, ");}
  if (hours > 9){hours = (hours+" hours, ");}
  if (minutes == 1){minutes = ("0"+minutes+" minute, and<br>");}
  if (minutes != 1 && minutes < 10){minutes = ("0"+minutes+" minutes, and<br>");}
  if (minutes > 9){minutes = (minutes+" minutes, and<br>");}
  if (seconds == 1){seconds = ("0"+seconds+" seconds"+" until Christmas!");}
  if (seconds != 1 && seconds < 10){seconds = ("0"+seconds+" seconds until Christmas!");}
  if (seconds > 9){seconds = (seconds+" seconds until Christmas!");}
  if (date < 0){month = "Merry ";date = " Christmas ";hours = " and ";minutes = " Happy ";seconds = "New Year!<br>&nbsp;<br>** This countdown will resume on January 1 **<br>If you can't wait that long,<br>click the link at the top of this page!";}
  timeString = month+date+hours+minutes+seconds;

if (document.layers) {
document.layers.Clock.document.write("<H3 ALIGN=CENTER>"+timeString+"</H3>");
document.layers.Clock.document.close();
}
else
if (document.all)
Clock.innerHTML = timeString;
setTimeout("clock()", 1000);
}
//-->
