// This is the code to insert the footer for http://www.wickham.id.au/blog
// There is nothing special in this script that cannot be in an HTML file
// This script is here so that changes can be made in one place to reflect in the whole site
// Written by Christian Wickham, November 2004

function addFooter(previous,next) {
    document.write("<hr><table border=0 width='100%'><tr><td><p class='blogtext'>" +
	"<a href="../oldblog/' + previous + '".htm>" +
	"<img src='/images/previous.gif' border='0' hspace='6' align='absmiddle'>Previous</a>" + 
	"<a href='../oldblog/index.htm'><img src='/images/index.gif' border='0' hspace='6' align='absmiddle'>Index</a>" +
	"<a href="../oldblog/'+ next + '".htm><img src='/images/next.gif' border='0' hspace='6' align='absmiddle'>Next</a></p></td>" +
	"<td align='right'><p class='textright'><a href='/resources/disclaimer.htm'>" +
	"<img src='/images/ball-green.gif' border='0' hspace='6' align='absmiddle'>Disclaimer </a></p></td></tr></table>" +
	"<p class='blogtext'><img src='/images/ficon3.gif' border='0' hspace='6' align='absmiddle'><i>You can comment on anything on this page in the " + 
	"<a href='http://www.wickham.id.au/phpBB_2/viewforum.php?f=9'>discussion forum</a></i></p>"); 

}