// JavaScript Document
//This document rewrites metadata on http://www.thau-knudsen.dk/sw/, 
//Erik Thau-Knudsen's notes on computer software issues
//Set up on 2004-01-12
//The below function draws a bottom bar in documents on level 1 below the root folder
function bundbar1 () {
var tabeldefinition = new String ('<table summary="Webdata" style="width: 100%;"><tr>');
var sidst_opdateret = new String ('<td><p class="kolofon">Last update ' + document.lastModified + '</p></td>');
var guestbook = new String ('<td><p class="navigation">Did you like what you read?<br />Leave a note in <a href="../default/risogros.html">myguestbook</a>!</p></td>');
var mac_made = new String ('<td><a href="http://www.apple.com/" title="Go to Apple"><img src="../picts/badges/macmade-wht.gif" alt="Made with a Mac" class="logostandard" /></a>')
var valider_html = new String ('<td><a href="http://validator.w3.org/check?uri=' + document.URL + '" title="Valider HTML-kodningen"><img src="../picts/badges/valid-xhtml11.png" alt="Valid XHTML 1.1!" /></a></td>');
var valider_css = new String ('<td><a href="http://jigsaw.w3.org/css-validator/validator?uri=' + document.URL + '" title="Valider CSS-kodningen"><img src="../picts/badges/valid-css20.png" alt="Valid CSS!" /></a></td>');
var tabelslutning = new String ('</tr></table>');
document.write (tabeldefinition + sidst_opdateret + guestbook + mac_made + valider_html + valider_css + tabelslutning);
}

//The below function draws a bottom bar in documents on level 2 below the root folder
function bundbar2 () {
var tabeldefinition = new String ('<table summary="Webdata" style="width: 100%;"><tr>');
var sidst_opdateret = new String ('<td><p class="kolofon">Last update ' + document.lastModified + '</p></td>');
var guestbook = new String ('<td><p class="navigation">Did you like what you read?<br />Leave a note in <a href="../../default/risogros.html">myguestbook</a>!</p></td>');
var mac_made = new String ('<td><a href="http://www.apple.com/" title="Go to Apple"><img src="../../picts/badges/macmade-wht.gif" alt="Made with a Mac" class="logostandard" /></a>')
var valider_html = new String ('<td><a href="http://validator.w3.org/check?uri=' + document.URL + '" title="Valider HTML-kodningen"><img src="../../picts/badges/valid-xhtml11.png" alt="Valid XHTML 1.1!" /></a></td>');
var valider_css = new String ('<td><a href="http://jigsaw.w3.org/css-validator/validator?uri=' + document.URL + '" title="Valider HTML-kodningen"><img src="../../picts/badges/valid-css20.png" alt="Valid CSS!" /></a></td>');
var tabelslutning = new String ('</tr></table>');
document.write (tabeldefinition + sidst_opdateret + guestbook + mac_made + valider_html + valider_css + tabelslutning);
}