<!--hide script from old browsers
function MakeArray(n) {this.length = n ; return this}
//
var Days = new MakeArray(7)
var Months = new MakeArray(12)
Days[1]="Sunday"
Days[2]="Monday"
Days[3]="Tuesday"
Days[4]="Wednesday"
Days[5]="Thursday"
Days[6]="Friday"
Days[7]="Saturday"
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] + " " + theDate.getDate() + " " +
 Months[theDate.getMonth()+1] + " " + (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('<CENTER>')
document.write('<FONT SIZE="1" COLOR="#000000" FACE="Arial,Verdana,Helvetica">')
document.write('Copyright © 2003 - ' + year + ' DrinkinGlass.com. ')
document.write(' All rights reserved. ')
document.write('</FONT>')
document.write('<FONT SIZE="1" COLOR="#000000" FACE="Arial,Verdana,Helvetica">')
document.write(' Last updated on ')
document.write(getDate(lastMod))
document.write('</CENTER>')
//-- end hiding -->