<!--
millenium = new Date(2011,7,13,19,30,0)

function display() {
        today = new Date()
        days = Math.floor((millenium-today)/(24*60*60*1000))
        time1 = Math.floor(((millenium-today)%(24*60*60*1000))/(60*60*1000))

        if((millenium - today) > 0){
                document.getElementById('day').innerHTML = days;
                document.getElementById('hour').innerHTML = time1;
        }else{
                document.getElementById('day').innerHTML = 0;
                document.getElementById('hour').innerHTML = 0;
        }
        tid = setTimeout('display()', 1000)
}
// -->
