<!--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('<P ALIGN="CENTER">')
document.write('<FONT SIZE="-2" COLOR="#006600" FACE="verdana">')
document.write('<CENTER>Last updated on ')
document.write(getDate(lastMod))
document.write('</FONT></P>')
document.write('<FONT SIZE="1" COLOR="#000000" FACE="verdana">')
document.write('© Copyright 1998 - ' + year + ' by ')
document.write('H. Schappell - All Rights Reserved.')
document.write('<BR><BR>All references to worlds and characters based on Anne McCaffrey\'s fiction are &copy; the author 1967\, 2000\, all rights reserved\,and used by permission of the author.<BR>The Dragonriders of Pern(r) is registered U.S. Patent and Trademark Office\, by Anne McCaffrey\, used here with permission.<BR>Use or reproduction without a license is strictly prohibited.<BR><BR><a href="http://www.annemccaffrey.org" target="_parent"><img src="../icons/logos/annelogo200x20.gif" width="200" height="20" align="middle" border="0"></a><BR><BR>Southern Weyr Emblem is &copy; Anne McCaffrey and drawn by H. Schappell.<BR>Graphics are &copy; Jelane K. Johnson\, 1996\, 1997 and H. Schappell, &copy; 2001.</CENTER>')
document.write('</FONT></P>')
//-- end hiding -->