Hi David, Thank you for the reply. Isn't it possible to do this without
using any external libraries? I tried to use the following code, but it
didn't work out: Last day of the month is: <% function
daysInMonth(today) { return new Date(today.getFullYear(),
today.getMonth(), 0).getDate(); } function month_fr(today){ var
monthFr:["Janvier", "Février", "Mars", "Avril", "Mai", "Juin",
"Juillet", "Aout", "Septembre", "Octobre","Novembre","Décembre"]; var
thisMonthFr = monthFr[today.getMonth()]; retur...