Hi, I had a very small and bad bug that I discovered today. I use strftime to format a date, and I accidentally used the %g option rather then %y. The difference is that %g is returning the year of the week (2009 this week), while %y return the year of today (2008). So I wanted to warn everyone, so if you made the same mistake, you could find it easily enough. Ido