//Page Footerfunction drawFooter()		{				var w = window;				//Page Footer				w.document.writeln('<BR>');				//Open Table				w.document.writeln('<TABLE WIDTH="100%">');				w.document.writeln('<TR><TD WIDTH="50" ALIGN="CENTER" VALIGN="BOTTOM">');				//Developer Logo & Tag				w.document.writeln('<FONT FACE="Arial" SIZE="-2" COLOR="#FFFFFF">Developed By</FONT><BR>');				w.document.writeln('<A HREF="http://www.ben-robinson.com">');				w.document.writeln('<IMG BORDER="0" SRC="../../images/dev/logo.jpg" ALT="Ben Robinson"></A>');				//New Table Coloumn				w.document.writeln('<TD ALIGN="RIGHT" VALIGN="BOTTOM">');				//Copywrite & Webmaster Info				w.document.writeln('<FONT FACE="Arial" SIZE="-1" COLOR="#FF9900">');				w.document.writeln('<A HREF="../copy/index.html">&copy;2002 Packington Morris Men</A><BR>');				w.document.writeln('<A HREF="mailto:webmaster@packingtonMorris.org.uk">');				//Close Table & Page				w.document.writeln('</TABLE></BODY></HTML>');		}