<!-- hide script from old browsers


// Simple date function
 // 
 function dimensiona(n) {
 	this.length=n;
 	for (var i=1;i<=n;i++) {
 		this[i]=0 }
 	return this
 }

 // Month

month=new dimensiona(12);
month[1]="Jan."
month[2]="Feb."
month[3]="Mar."
month[4]="Apr."
month[5]="May"
month[6]="Jun."
month[7]="Jul."
month[8]="Aug."
month[9]="Sept."
month[10]="Oct."
month[11]="Nov."
month[12]="Dec."

 // day

day=new dimensiona(7);
day[1]="Sunday"
day[2]="Monday"
day[3]="Tuesday"
day[4]="Wednesday"
day[5]="Thursday"
day[6]="Friday"
day[7]="Saturday"

 // end hiding script from old browsers -->
    

