<!--hide script from old browsers
function MakeArray(n) {this.length = n ; return this}
//
var Days = new MakeArray(7)
Days[1]="Sunday"
Days[2]="Monday"
Days[3]="Tuesday"
Days[4]="Wednesday"
Days[5]="Thursday"
Days[6]="Friday"
Days[7]="Saturday"

var Months = new MakeArray(12)
Months[1]="January"
Months[2]="February"
Months[3]="March"
Months[4]="April"
Months[5]="May"
Months[6]="June"
Months[7]="July"
Months[8]="August"
Months[9]="September"
Months[10]="October"
Months[11]="November"
Months[12]="December"
//
function getDate(theDate) 
{
 years = theDate.getYear()
 
 if (years <= 50) 
 {
 	//reset year < 1950 - MSIE date problem
 	years += 100 ; theDate.setYear(years+1900)
 }
 
 if ((years > 99) && (years < 200)) 
 	{years +=1900}
 
 return Days[theDate.getDay()+1] + " " + Months[theDate.getMonth()+1] + " " + theDate.getDate()  + ", " + (years) + "."
}

var lastMod = new Date()
var today = new Date()
var year = (today.getYear()+1900)

if (year >= 2100) 
	{year = (year - 1900)}
//
lastMod.setTime(Date.parse(document.lastModified))
document.write('<div align="center" class="fineprint">This page was last updated on<br />')
document.write(getDate(lastMod))
document.write('<br />')
document.write('<p align="center" class="fineprint">')
document.write('&copy; Copyright 1991 - ' + year + ' &nbsp;<b>Night Sun</b> ')
document.write('- All Rights Reserved')
document.write('</p>')
document.write('</div>')
//-- end hiding -->