﻿// Clock JScript File

var today_date= new Date()
var month=today_date.getMonth()+1
var today=today_date.getDate()
var year=today_date.getYear()

document.write("<font color='#666666' face='Tahoma'></font></small>")
document.write("and last updated on the 1/")
document.write(month+"/"+year)
