//Writes out the side-bar for John's web pages.
//Only works with IE4/NS3 and above.
//John Adams 5/9/2001
<!--
function writeSidebar(URL, text){
   //URL represents the image icon to be used at the top of the page
   document.write("<td valign=top width='150' height='100%' border='0' background='../Images/sidebarBckgrd.gif'>");
   document.write("<table border=0 cellspacing=0 cellpadding=2 width=100%>");
   document.write("<tr><td colspan=3><img src='" + URL + "'width=145 alt='" + text + "'></td></tr>");
   document.write("<tr><td width=10></td>");
   document.write("<td align=right id=nav background='../Images/sidebarBckgrd2.gif'>");
   document.write("<table border=0 cellspacing=0 cellpadding=2 width=100%>");
   
   //navigation links
   document.write("<td align=right id=nav><br>");
   document.write("<a class=sidebar href='../index.html'>Home</font></a><br>");
   document.write("<a class=sidebar href='../cv.html'>CV</a><br>");
   document.write("<a class=sidebar href='project.html'>M.Sc. project</a><br>");
   document.write("<a class=sidebar href='../endtoend/index.html'>Roger's trip</a><br>");
   document.write("<a class=sidebar href='http://students.dcs.gla.ac.uk/students/adamsjt/index.html'>Uni web page</a><br>");
   document.write("<BR></td><td width=25></td></table></td>");
   document.write("<td width=5></td></tr><tr><td colspan=3 height=10></td></tr>");
   document.write("<tr><td width=10></td><td id=nav>");
   document.write("<a class=sidebar href='mailto:jtadams@btinternet.com'><img src='../Images/envelope_ani.gif' width='34' height='21' border='0'> Email</a><br>");
   document.write("</td></tr><td width=5></td>");
   
   //today's date
   document.write("<tr><td colspan=3 id=nav><P><B><font color=white>");
   document.write("<script> date(); </script>");
   document.write("</b><br>");
   document.write("Last modified<br>");
   document.write("<script> modDate(); </script>");
   document.write("</td></tr></table></td>");
}
//-->



