<!--
var TheDate = new Date();
var yy = TheDate.getYear();
if(yy < 2000) { yy+= 1900 } // Y2K fix

var footer = '<font color="#FFFFFF" size="1"><br>';

footer += '&nbsp;&nbsp;&copy; Foxfire 1993-' + yy;
footer += '<br>&nbsp;&nbsp;Microsoft is a regd trademark of Microsoft Corporation in the United States and other countries.<br><br></font>';
document.write(footer);

//-->