function daysUntil(dt)
{
  today  = new Date();
  todayEpoch  = today.getTime();
  
  //target = new Date("6 June, 2009"); 
  targetEpoch = dt.getTime();
  
  daysLeft = Math.floor(((targetEpoch - todayEpoch) / (60*60*24)) / 1000);
  
  return(daysLeft);
}


