var style;
style = "<style type=\"text/css\">\n";

style += "#signature { color : darkgreen;\n";
style += "font-family : times;\n";
style += "font-size : 10pt;\n";
style += "}\n";

style += "#datetext { color : darkblue;\n";
style += "font-family : arial;\n";
style += "font-size : 8pt;\n";
style += "}\n";

style += "#date { color : darkblue;\n";
style += "font-family : arial;\n";
style += "font-size : 8pt;\n";
style += "}\n";

style += "</style>\n";
document.write(style);

var msg;
msg = "<HR><center>";
msg += "<SPAN ID=\"signature\">\n";
msg += "Author: Margaret R. White &copy; 2001-03</SPAN><P>\n";
msg += "<SPAN ID=\"datetext\">\n";
msg += "Last updated on: </SPAN><BR>\n";
msg += "<SPAN ID=\"date\">";
msg += document.lastModified;
msg += "</SPAN></center>\n";
document.write(msg);
