
    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 == 9 && month == 9)
        days = 29 - dom;
    else 
        days = 0;
    if (days < 0) days = 0;
    if (days < 10) days = '0' + days.toString();


var base = 'http://www.ubuntu.com/files/countdown/910/countdown-9.10-2/';

document.write('<a href="http://www.ubuntu.com/"><img id="countdownimage" src="'+base+days+'.png" width="180" height="150" border="0" alt="Ubuntu 9.10 - Coming soon" style="padding-top:2px;background-color:transparent"></a>');

// document.write('<a href="http://www.ubuntu.com/"><img id="ubuntucountdownimage" src="'+base+'here.png" width="180" height="150" border="0" alt="Ubuntu 9.10 is here"></a>');
//
