function countdown() {
now = new Date();

setdate = new Date("November 5 2010");      // You can change the date//
day = (setdate - now) / 1000 / 60 / 60 / 24;
day = Math.round(day+1);

cDown=("There are only  " +  day + " days left until Bonfire Night 2010. ")

document.write(cDown.fontcolor("#FFDAB9"));  }

