	function daystill()
{


var date = new Date("December 25, 2009"); 
var now = new Date(); 
var diff = date.getTime() - now.getTime(); 
var days = Math.floor(diff / (1000 * 60 * 60 * 24)); 

document.write("<center><font size=5>Christmas is coming in just ");

if (days > 1) { 
document.write(days+1 + " days"); 
} 
else if (days == 1) { 
document.write("two days"); 
} 
else if (days == 0) { 
document.write("Tomorrow"); 
} 
else { 
document.write("Today"); 
}


document.write("<br></font></center>");

}

daystill()
