          var yr= new Date("December 25, 2009");
          function printDays() {
              var today = new Date();
                      timeLeft = (yr.getTime() - today.getTime());
                              if (timeLeft>0) {
                                                timeLeft = Math.floor(timeLeft/1000);
                                                e_daysLeft = Math.floor(timeLeft/86400);
                                                daysLeft = Math.floor(e_daysLeft);
                                                hoursLeft = Math.floor(timeLeft/3600);
                                                xhoursLeft = daysLeft * 24;
                                                hoursLeft = hoursLeft - xhoursLeft - 1;
                                                minsLeft = Math.floor(timeLeft/60);
                                                xminsLeft = xhoursLeft * 60;
                                                minsLeft = minsLeft - xminsLeft - ((hoursLeft) * 60) - 59;
                                                document.count.timeleft.value=daysLeft+" days, "+hoursLeft+" hours, "+minsLeft+" minutes left until Christmas 2009";
                                        setTimeout("printDays()",1000);
                                                        } else
                                                document.count.timeleft.value="Merry Christmas";
                                        }
                printDays();
