indeed! Thanks, I always went the setTime() way and haven't looked too muchat setDate() before :)
> Why, it's not that bad! > > // add a day to Jan 31, 2005 > var d:Date = new Date(2005, 0, 31); > d.setDate(d.getDate() + 1); > alert(d.toString()); > // displays Feb 1, 2005! > > Manish

