<!-- hide script
today = new Date()
month = today.getMonth()
month = (month * 1) + 1
day = today.getDate()
year = today.getYear()
document.write("Today's date is: ",month,"/",day,"/",year," ")
// end hide script -->


