//JavaScript file for virtual footer
//Update this document only to change footer on entire site

function printVirtualFooter()
{

document.write('<CENTER><hr width=95% size=1 noshade color="#660000">');

document.write('<TABLE BORDER=0 CELLPADDING=0><TR><TD ROWSPAN=2><P><A HREF="index.html"><IMG SRC="graphics/logofoot.gif" ALT="Home" WIDTH=80 HEIGHT=60 BORDER=0 ALIGN=middle vspace=2></A><IMG SRC="graphics/colon.gif" WIDTH=16 HEIGHT=25 BORDER=0 ALIGN=middle hspace=2></P></TD>');

document.write('<TD><P><A HREF="about.html"><IMG SRC="graphics/aboutus.gif" ALT="About T.B.T.C." WIDTH=177 HEIGHT=35 BORDER=0 ALIGN=middle></A><IMG SRC="graphics/spacer.gif" WIDTH=34 HEIGHT=25 BORDER=0 ALIGN=middle><A HREF="cast.html"><IMG SRC="graphics/cast.gif" ALT="Cast" WIDTH=98 HEIGHT=32 BORDER=0 ALIGN=middle></A><IMG SRC="graphics/spacer.gif" WIDTH=34 HEIGHT=25 BORDER=0 ALIGN=middle><A HREF="crew.html"><IMG SRC="graphics/crew.gif" ALT="Crew" WIDTH=91 HEIGHT=29 BORDER=0 ALIGN=middle></A></P></TD></TR>');

document.write('<TR><TD ALIGN=center><P><A HREF="pjournal.html"><FONT SIZE="+1">Production Journal</FONT></A><FONT SIZE="+1"> | </FONT><A HREF="guestbook/guestbook.html"><FONT SIZE="+1">Guestbook</FONT></A><FONT SIZE="+1"> | </FONT><A HREF="sitemap.html"><FONT SIZE="+1"><I>Site Map</I></FONT></A></P></TD></TR></TABLE>');

document.write('<hr width=95% size=1 noshade color="#660000">');

document.write('<FONT COLOR="#003300"><I>Web site created and maintained by </I></FONT><A HREF="http://homepage.mac.com/binsk"><FONT COLOR="#0033FF"><I>Robin Stewart</I></FONT></A><BR><FONT SIZE="-1" COLOR="#003300"><I>Hosted by </I></FONT><A HREF="http://www.organicfamily.com"><FONT SIZE="-1" COLOR="#003399"><I>Organic Family</I></FONT></A><FONT SIZE="-1" COLOR="#003300"><I>.</I></FONT><BR><FONT SIZE="-1" COLOR="#663300">Email any questions, comments, or concerns to </FONT><A HREF="mailto:tediousbrief@mail.com"><FONT SIZE="-1" COLOR="#333300">tediousbrief@mail.com</FONT></A><FONT SIZE="-1" COLOR="#663300">.</FONT><BR><FONT SIZE="-1">&copy; 2001 <A HREF="index.html">Tedious Brief Theatre Company</A></FONT></P>');

var now = new Date(document.lastModified);
var year = now.getYear();
var day = now.getDate();
var monthnum = now.getMonth();

var ar = new Array(12)
        ar[0] = "January";
        ar[1] = "February";
        ar[2] = "March";
        ar[3] = "April";
        ar[4] = "May";
        ar[5] = "June";
        ar[6] = "July";
        ar[7] = "August";
        ar[8] = "September";
        ar[9] = "October";
        ar[10] = "November";
        ar[11] = "December";

var month = ar[monthnum];

document.write('<font size="1" color="#666666">This page was last updated on ' + month + ' ' + day + ', ' + year + '.</font></CENTER>');

}