/*
Started on:: 5/11/2000

Utility code for The Abode website.
Only tested for compatibility with Javascript1.2 and above.

/*
Print the first part of each document:
Logo for theAbode and the table that surrounds it.
*/
function printHead(){
}

/*
Print the last part of each document:
My name, email address and the modification date of the document.
*/
function printTail(){
	document.write('<h6><i>The Abode by<br> ');
	document.write('<a href="mailto:ade@oshineye.com">');
	document.write("Adewale Oshineye</a><br>");
	document.write("</i></h6>");//close small italic text
}

/*
Print the navigation menu and its enclosing border
*/
function printMenu(){
	document.write('<!-- menuTable-->');
	document.write('<table class="borderedNavTable" align="center" cellspacing="1" cellpadding="2" border="0" width="180">');
		document.write('<tr><th align="center"><a href="theAbode.html" class="sitelink" title="The homepage">The Abode::</a></th></tr>');
		document.write('<tr>');
			document.write('<td  class="menuItem"><a href="http://blog.oshineye.com/" class="sitelink" title="My blog: Heuristic Outcomes">Blog</a></td>');
		document.write('</tr>');
		document.write('<tr>');
			document.write('<td  class="menuItem"><a href="texts.html" class="sitelink" title="My writing and presentations">Texts</a></td>');
		document.write('</tr>');		
		document.write('<tr>');
			document.write('<td class="menuItem"><a href="software.html" class="sitelink" title="Some of the programs I have written">Software</a></td>');
		document.write('</tr>');
		document.write('<tr>');
			document.write('<td class="menuItem"><a href="javacert.html" class="sitelink" title="Some advice for those studying for Java Certification">SCPJ</a></td>');
		document.write('</tr>');
		document.write('<tr>');
			document.write('<td  class="menuItem"><a href="books.html" class="sitelink" title="Some recommended books">Books</a></td>');
		document.write('</tr>');
		document.write('<tr>');
			document.write('<td class="menuItem"><a href="links.html" class="sitelink" title="Links to interesting places on the web">Links</a></td>');
		document.write('</tr>');
	document.write('</table>');
	document.write('<br>');
	document.write('<a href="http://www.amazon.co.uk/Apprenticeship-Patterns-Guidance-Aspiring-Craftsman/dp/0596518382"><img src="images/apprenticeship_patterns_cover_small.gif" border="0" style=""></a>');
}
