    today  = new Date();
    todayEpoch  = today.getTime();
    target = new Date("3 June, 2009"); 
    targetEpoch = target.getTime();
    daysLeft = Math.floor((((targetEpoch - todayEpoch) / (60*60*24)) / 1000) + 1);
