var months = new Array(13);
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";
var dateObj = new Date(document.lastModified)
var month = months[dateObj.getMonth() + 1]
var year = dateObj.getYear()
var date = dateObj.getDate()
document.write("<TABLE WIDTH=775 CELLPADDING=0 CELLSPACING=0 BORDER=0 BGCOLOR=#FFFFFF><TR><TD ALIGN=LEFT VALIGN=TOP>")
document.write("<hr color=MAROON width=760 align=middle>")
document.write("<TABLE WIDTH=760 CELLPADDING=0 CELLSPACING=0 BORDER=0><TR><TD ALIGN=LEFT VALIGN=TOP>")
document.write("<FONT SIZE=1 FACE=Arial COLOR=BLACK FONT-WEIGHT:900> <STRONG>")
document.write("Copyright &copy; 2002-2009, Second Chance Books, Inc. (All Rights Reserved)")
document.write("<BR>")
document.write("This page last updated on: " + month + " " + date + ", " + year)
document.write("</TD><TD ALIGN=RIGHT VALIGN=TOP>")
document.write("<FONT SIZE=1 FACE=HELVETICA COLOR=RGB(107,140,181) FONT-WEIGHT:900> <STRONG>")
document.write("<a href=SiteMap.htm>Site Map</a>" + " | ")
document.write("<a href=http://www.2ndchancebooks.com/default.htm>HOME</A>&nbsp;&nbsp;<br>&nbsp;&nbsp<br>&nbsp;&nbsp")
document.write("</TD></TR></TABLE>")