<!--
function MakeArray(n) {
    this.length = n
    return this
}
monthNames = new MakeArray(12)
monthNames[1] = "january"
monthNames[2] = "february"
monthNames[3] = "march"
monthNames[4] = "april"
monthNames[5] = "may"
monthNames[6] = "june"
monthNames[7] = "july"
monthNames[8] = "august"
monthNames[9] = "september"
monthNames[10] = "october"
monthNames[11] = "november"
monthNames[12] = "december"
dayNames = new MakeArray(7)
dayNames[1] = "sunday"
dayNames[2] = "monday"
dayNames[3] = "tuesday"
dayNames[4] = "wednesday"
dayNames[5] = "thursday"
dayNames[6] = "friday"
dayNames[7] = "saturday"

function customDateString() {
    currentDate = new Date()
    var theDay = dayNames[currentDate.getDay() + 1]
    var theMonth = monthNames[currentDate.getMonth() + 1]
    msie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ));
if (msie4) {
    var theYear = currentDate.getYear()
}
else {
    var theYear = currentDate.getYear() +1900
}
    return theDay + ", " + theMonth + " " + currentDate.getDate() + ", " + theYear
}

document.write("<font color=#CCCCCC>"+customDateString()+"</font>")



function openView(filename)
{
	url = filename
	window.open(url,'previewfile','scrollbars=yes,resizable=yes,width=660,height=500');
}
//-->
