//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'>");
   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/green.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/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=5></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 me</a><br>");
   document.write("</td></tr>");
   
   //today's date
   document.write("<tr><td width=10></td><td colspan=2 id=nav><P><B><font color=99cc99>");
   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>");
}

function writeTopbar(){
   document.write("<tr><td style='height:20px;cellpadding:0;margin:0'>");
   document.write("<table style='background-color:tan;width:100%;height:20'>");
   document.write("<td id=nav valign=top>");
   document.write("<a class=sidebar href='index.html'>Home</a>|");
   document.write("<a class=sidebar href='cv.html'>CV</a>|");
   document.write("<a class=sidebar href='project/project.html'>M.Sc. project</a>|");
   document.write("<a class=sidebar href='endtoend/index.html'>Roger's trip</a>|");
   document.write("<a class=sidebar href='mailto:jtadams@btinternet.com'>Email</a><br>");
   document.write("</td><td style='height:20;text-align:right'>");
   writeSearchBox();
   document.write("</td></tr></table>");
   document.write("</td></tr>");
}

function writeSearchBox(){
   document.write("<FORM method=GET action='http://www.google.co.uk/search' style='font-size:8pt;height:20'>");
   document.write("<INPUT TYPE=text name=q size=25 maxlength=255 value='' style='font-size:8pt'>");
   //document.write("<INPUT TYPE=image SRC='Images/go.gif' NAME=btnG VALUE='Google Search' style='font-size:8pt'>");
   document.write("<INPUT type=submit name=btnG VALUE='Google Search' style='font-size:8pt'>");
   document.write("</FORM>");
}


