function borders(path) 
{ document.write( " <div id='container'>");
  document.write( "  <div id='header'><a name='top'></a>");
  document.write( "  <center>");
  document.write( "  <table width='800' border='0'>");
  document.write( "   <tr><td>");
  document.write( "     <img src='"+path+"images/maintitle.gif' width='353' height='19'");
  document.write( "   </td>");
  document.write( "   <td><h3>");
  document.write( "   <ul>");
  document.write( "    <li><a href='"+path+"c-home.html'>Home</a></li>");
  document.write( "    <li><a href='"+path+"c-faqs.html'>FAQs</a></li>");
  document.write( "    <li><a href='"+path+"c-library.html'>Library</a></li>");
  document.write( "    <li><a href='"+path+"c-dvd.html'>DVD</a></li>");
  document.write( "   </ul>");
  document.write( "  </h3></td>");
  document.write( "  </tr></table>");
  document.write( "  </div>");
  document.write( "  </center>");
  document.write( "  <br clear='all'/>");
}

// ========================================================================================================================

function closesite(path) 
{ 
  var now = new Date();
  var year = now.getYear(); 
  document.write( "<div id='footer' width='100%' style='float: bottom'>");
  document.write( "<p align='left'>");
  document.write( "<span>");
  document.write( "<a href='"+path+"c-copyright.html'>");
  document.write("(c) 2001-");
  document.write("2011");
  document.write(" Acorn Electron World</a></span>");
  document.write("<a href='"+path+"c-home.html'>Home</a>");
  document.write(" | <a href='"+path+"c-faqs.html'>FAQs</a>");
  document.write(" | <a href='"+path+"c-library.html'>Library</a>");
  document.write(" | <a href='"+path+"c-dvd.html'>DVD</a>");
  document.write( "</div>");
  document.write( "</div>");
}

   
