
    var d = new Date();
    dom = d.getDate();
    month = d.getMonth();
    year = d.getYear();
    if (year < 2000) year = year - 100;
    else year = year - 2000;

    if (year == 10 && month == 3)
        days = 29 - dom;
    else 
        days = 0;
    if (days < 0) days = 0;
    if (days < 10) days = '0' + days.toString();


var base = 'http://ubuntu.ru/media/countdown/1004/';

// document.write('<a href="http://ubuntu.ru/"><img id="countdownimage" src="'+base+days+'.png" width="180" height="150" border="0" alt="Ubuntu 10.04 LTS" title="Ubuntu 10.04 LTS- Уже скоро!"></a>');
document.write('<a href="http://ubuntu.ru/get"><img id="countdownimage" src="'+base+'here.png" width="180" height="150" border="0" alt="Ubuntu 10.04 LTS" title="Ubuntu 10.04 LTS - Уже здесь!"></a>');
