/*********************************************************************************/
/*     Standard Header and Footer functions to the Ostergaard homepages          */
/*     Copyright 1999 Henrik Ostergaard                                          */
/*********************************************************************************/

// *************************** Header/Footer functions

function ShowHeader( Header, back ) // Make the Header/Set standard settings
{
 
  document.write('<table border=0><tr><td width=100% align=left>');
  document.write('<h1>'+Header+'</h1>');
  document.write('</td><td align=right>');
  if (back) {
	 document.write('<a onClick="history.go(-1)"><img src="back.jpg" ></a>');
  } else {
	 document.write('<img src="tux.png">');
  }

   document.write('</td></tr></table>');
}

function ShowFooter(  ) // Make the footer
{ 

  document.writeln('<br><br>');
  document.write('<table border=0><tr><td width=100% align=left><font size=-1>');
  document.writeln('All this material (unless otherwise stated) is copyrighted &copy; 2007 by Henrik Østergaard Madsen and released under GPL2 - feel free to use it,');
  document.writeln(' but credit and comments will be appreaciated!<br>');
  document.writeln('Please mail comments to henrik  (a<spamtag deluxe>t) ostergaard <dot> net. ');
  document.writeln('This page was last updated at ' + document.lastModified + ' CET.');
  document.writeln('</font>');
  document.write('</td><td><img src="legotux.gif">');
  document.write('</td></tr></table>');

}
