// JavaScript Document

//menu para las subpaginas
function Menu1()
{  

document.write('<p><a href="../index.php">Inicio</a></p>');
document.write('<p><a href="../atms.php">Sobre los ATMs</a></p>');
document.write('<p><a href="../historia.php">Historia del sello espaņol</a></p>');
document.write('<p><a href="../historia2.php">Historia, parte 2</a></p>');

document.write('<br><h2>Hojas de &aacute;lbumes por aņos en PDF</h2>');


document.write('<p><a href="../pdfs/index.html">&Aacute;lbumes</a></p>');

document.write('<br><h2>Hojas de &aacute;lbumes por a&ntilde;os</h2>');

document.write('<p><a href="../1997/index.html">1997</a></p>');
document.write('<p><a href="../1998/index.html">1998</a></p>');
document.write('<p><a href="../1999/index.html">1999</a></p>');
document.write('<p><a href="../2000/index.html">2000</a></p>');

document.write('<br><h2>Informacion sobre la web</h2>');


document.write('<p><a href="../legal.html">Aviso legal</a></p><br>');



}

//menu para las paginas principales
function Menu2()
{  

document.write('<p><a href="index.php">Inicio</a></p>');
document.write('<p><a href="atms.php">Sobre los ATMs</a></p>');
document.write('<p><a href="historia.php">Historia del sello espaņol</a></p>');
document.write('<p><a href="historia2.php">Historia, parte 2</a></p>');

document.write('<br><h2>Hojas de &aacute;lbumes por aņos en PDF</h2>');


document.write('<p><a href="pdfs/index.html">&Aacute;lbumes</a></p>');

document.write('<br><h2>Hojas de &aacute;lbumes por a&ntilde;os</h2>');

document.write('<p><a href="1997/index.html">1997</a></p>');
document.write('<p><a href="1998/index.html">1998</a></p>');
document.write('<p><a href="1999/index.html">1999</a></p>');
document.write('<p><a href="2000/index.html">2000</a></p>');

document.write('<br><h2>Informacion sobre la web</h2>');


document.write('<p><a href="legal.html">Aviso legal</a></p><br>');



}