/*
 * Free JavaScripts on http://www.ScriptBreaker.com/
 */
function timetill(year,month,day)
{
    countdown=new Date(year,month-1,day);
    now = new Date();
    
    count_sec = Math.round((countdown - now) / 1000);
    days = Math.floor(count_sec/(60*60*24))
    hours = Math.floor((count_sec - (days*60*60*24))/(60*60))
    minutes = Math.floor((count_sec- (days*60*60*24 + hours*60*60))/60)
    sec = count_sec- (days*60*60*24 + hours*60*60 + minutes*60)
    
    str = days +" days, "+ hours +" hours, "+ minutes +" minutes, "+ sec +" seconds"
    obj_count_sec_display = document.getElementById("count_sec_display");

    obj_count_sec_display.innerHTML = str+" until the Party Starts!";
    setTimeout("timetill(2010,04,02)",1000);
}
// Set the end date here in the following format:
//  Year, Month, Day
//timetill(2008,03,28);