// JavaScript Document



function printHeader(fname)

{

    //  @(#) printHeader - Top matter of HTML page with common stuff on top of page

    //

    

    

  document.writeln("  <head>");

  document.writeln("    <link rel=\"stylesheet\" href=\"global.css\" type=\"text/css\">");

  document.writeln("<LINK REL=\"SHORTCUT ICON\"");

  document.writeln("     HREF=\"ian.ico\">");

  document.writeln("  </head>");

  document.writeln("      <body>");

  document.writeln("  <div align=\"center\">");

  document.writeln("  <table BORDER=5 WIDTH=\"650\" bgcolor=\"#FFFFCC\" class=\"one\">");

  document.writeln("  <tr><td colspan=\"3\" align=\"center\">");

  document.writeln("  <a href=\"index.html\"><img SRC=\"images/iangould_title.jpg\" ALT=\"Ian Gould\" BORDER=0 width=350></a><br>");

  document.writeln("  <small><strong>");

  document.writeln("  <br><a class=\"plain\" href=\"index.html\">Home</a>&nbsp;&nbsp;&nbsp;&nbsp;<a class=\"plain\" href=\"gigs.html\">Gigs</a>");

  document.writeln("  &nbsp;&nbsp;&nbsp;&nbsp;<a class=\"plain\" href=\"multi.html\">Multimedia</a>");

  document.writeln("  &nbsp;&nbsp;&nbsp;&nbsp;<a class=\"plain\" href=\"bio.html\">Bio</a>&nbsp;&nbsp;&nbsp;&nbsp;<a class=\"plain\" href=\"links.html\">Links</a>&nbsp;&nbsp;&nbsp;&nbsp;");

  document.writeln("  <a class=\"plain\" href=\"news.html\">News</a>&nbsp;&nbsp;&nbsp;&nbsp;<a class=\"plain\" href=\"mail.html\">Mailing List</a>");

  document.writeln("  <br><br></strong></small></td></tr></table>");

  document.writeln("  <br>");

  document.writeln("  <table BORDER=5 WIDTH=\"650\" bgcolor=\"#FFFFCC\" class=\"one\">");

  document.writeln("  <tr><td VALIGN=TOP align=center>");

  

}   





function printFooter(fname)

{



  document.writeln("      <br><br>");

  document.writeln("      </div></td></tr>");

  //document.writeln("  <tr><td VALIGN=TOP>");  

  

  //document.writeln("      </td></tr>")

  document.writeln("      </table>");

document.writeln("      <br><i><a href=\"mailto:iangouldtara@sbcglobal.net\">iangouldtara@sbcglobal.net</a>")  

  document.writeln("      </body>");



}

   

