<!--
var now   = new Date();
var month = "";
var year  = "";
var date  = now.getDate();
if (now.getMonth() == 0) month = "january"
if (now.getMonth() == 1) month = "february"
if (now.getMonth() == 2) month = "march"
if (now.getMonth() == 3) month = "april"
if (now.getMonth() == 4) month = "may"
if (now.getMonth() == 5) month = "june"
if (now.getMonth() == 6) month = "july"
if (now.getMonth() == 7) month = "august"
if (now.getMonth() == 8) month = "september"
if (now.getMonth() == 9) month = "october"
if (now.getMonth() == 10) month = "november"
if (now.getMonth() == 11) month = "december"
if (now.getYear() < 100) year = "19" + now.getYear()
//-->