Ставте если хотите.
Пример можно посмотреть на tallking.ru

Код:
<div id='x1' style='padding:14px; border: 1px dashed black;'></div>

<div align="center">

<script Language="javascript">

var timeStr, dateStr, ostStr, x;

function clock() {
now= new Date();
ex = new Date(2009,0,1,0,0,0);

// время
hours= now.getHours();
minutes= now.getMinutes();
seconds= now.getSeconds();
timeStr= "" + hours;
timeStr+= ((minutes < 10) ? ":0" : ":") + minutes;

// дата
date= now.getDate();
month= now.getMonth()+1;
year= now.getYear();
dateStr= "" + date;
dateStr+= ((month < 10) ? "/0" : "/") + month;
dateStr+= "/" + year;

ostStr= "";
x = (ex.getTime() - now.getTime())/1000;
ostStr = Math.floor(x/60/60) + ' ч. ';
ostStr = ostStr + Math.floor((x/60/60 - Math.floor(x/60/60))*60) + ' мин. ';
x = (((x/60/60 - Math.floor(x/60/60))*60) - Math.floor((x/60/60 - Math.floor(x/60/60))*60))*60;
ostStr = ostStr + Math.floor(x) + ' сек. ';

document.getElementById('x1').innerHTML = 'до Нового Года осталось: ' + '' + ostStr;

Timer= setTimeout("clock()",10);
}

clock();
</script>

</div>