<HTML><HEAD>
[JS]<SCRIPT language=javascript>
function clockon() {
today = new Date();
BigDay = new Date("May 13, 2008")
msPerDay = 24 * 60 * 60 * 1000 ;
timeLeft = (BigDay.getTime() - today.getTime());
e_daysLeft = timeLeft / msPerDay;
daysLeft = Math.floor(e_daysLeft);
e_hrsLeft = (e_daysLeft - daysLeft)*24;
hrsLeft = Math.floor(e_hrsLeft);
e_minsLeft = (e_hrsLeft-hrsLeft)*60;
minsLeft = Math.floor(e_minsLeft);
e_secLeft = (e_minsLeft-minsLeft)*60;
secLeft = Math.floor(e_secLeft);
var content = "осталось <br><b>"+daysLeft+"</b> дней,<br> <b>"+hrsLeft+"</b> часов<br><b>"+minsLeft+"</b> минут,<br><b>"+secLeft+"</b> секунд";
document.getElementById('container').innerHTML = content;
setTimeout("clockon()", 1000);
}
</SCRIPT>[/JS]</HEAD>
<BODY onLoad="clockon()">
<SPAN id="container"></SPAN>
</BODY></HTML>