// Contains basic stuff, which will be written at each page
// Copyright(c)2005, LhK-Soft, Laurens Koehoorn
// 
// Version 1.1 : 23-Jul-05
///////////////////////////////////////////////////////////////////////////

function writeFooter(last)
{
  var s = (!last) ? "" : 'Last updated at ' + last + ', ';

  document.write('<hr />');
  document.write('<table cellspacing="0" cellpadding="0" border="0" width="100%">');
  document.write(' <tbody>');
  document.write('  <tr>');
  document.write('   <td valign="top" style="text-align: left">');
  document.write('    <address>' + s + 'Copyright(c)(w)2005 by LhK-Soft, Laurens Koehoorn</address>');
  document.write('   </td>');
  document.write('   <td valign="top" style="text-align: right">');
  document.write('    <a href="http://validator.w3.org/check/referer" target="window">');
  document.write('     <img src="/lhksoft/img/xhtml10!.gif" alt="Valid XHTML 1.0!" height="31" width="88" border="0" align="right" />');
  document.write('    </a>');
  document.write('   </td>');
  document.write('  </tr>');
  document.write(' </tbody>');
  document.write('</table>');
}

