function InizioPagina(pagina,indietro,avanti)
{
  document.write('<table style="width:100%; background-color:yellow">');
  document.write('<tr>');
  document.write('<td style="width:10%">');
  if (indietro.length>0)
    {
      document.write('<a href="'+indietro+'.htm">');
      document.write('<img src="indietro.gif" alt="indietro" width="40" height="40" style="border-style:none" />');
      document.write('</a>');
    }
  document.write('</td><td style="width:80%; text-align:center">');
  document.write('Le funzioni reali trascendenti - '+pagina+' -<br /><small>a cura di <a href="http://www.robertobigoni.it">R. Bigoni</a></small>');
  document.write('</td><td style="width:10%">');
  if (avanti.length>0)
    {
      document.write('<a href="'+avanti+'.htm">');
      document.write('<img src="avanti.gif" alt="avanti" width="40" height="40" style="border-style:none" /></a>');
    }
  document.write('</td></tr></table><hr style="noshade:noshade; color:blue; background-color:blue; height:3" />');
}

function FinePagina(indietro,avanti)
{
  document.write('<hr style="noshade:noshade; color:blue; background-color:blue; height:3" />');
  document.write('<table style="width:100%; background-color:yellow">');
  document.write('<tr>');
  document.write('<td style="width:10%">');
  if (indietro.length>0)
    {
      document.write('<a href="'+indietro+'.htm">');
      document.write('<img src="indietro.gif" alt="indietro" width="40" height="40" style="border-style:none" /></a>');
    }
  document.write('</td><td style="width:80%; text-align:center">');
  document.write('<img src="../../valid-xhtml10.gif" alt="Valid XHTML 1.0!" height="31" width="88"; border-style:none />');
  document.write('</td><td style="width:10%">');
  if (avanti.length>0)
    {
      document.write('<a href="'+avanti+'.htm">');
      document.write('<img src="avanti.gif" alt="avanti" width="40" height="40" style="border-style:none" /></a>');
    }
  document.write('</td></tr></table><hr style="noshade:noshade; color:blue; background-color:blue; height:3" />');
}


