var today = new Date()
var theDate = today.getDate();
var theMonth = "JanFebMarAprMayJunJulAugSepOctNovDec";
var theYear = today.getFullYear();
document.write(theMonth.substring(today.getMonth() * 3, (today.getMonth() + 1) * 3));
document.write(" ");
document.write(theDate);
document.write(", ");
document.write(theYear);
