  function Menu()
  {
    var dir = "http://www.geocities.com/torosaurio/";
    var dir2 ="http://www.geocities.com/torosaurio/escept/";

    document.writeln( "<table align='center' cellspacing='0' cols='2' width='100%'>" );
    document.writeln( "<tr><td width='20%' valign='center' bgcolor='#000099'>" );
    document.writeln( "<center>" );
    document.writeln( "<img src='http://www.geocities.com/torosaurio/toro.jpg'>");
    document.writeln( "</center>" );
    document.writeln( "</td><td width='80%' bgcolor='#000099'>" );
    document.writeln( "<center>" );
    document.writeln( "<IMG src='http://www.geocities.com/torosaurio/prbanner.jpg'>" );
    document.writeln( "</center>" );
    document.writeln( "</td></tr><td valign='top' bgcolor='#C6C6CE'>" );
    document.writeln( "<b><font face='Times New Roman,Times' size='-1'>" );
    document.writeln( "<center>" );
    document.writeln( "<p><a href=\"http://www.geocities.com/torosaurio/nuevo.html\">NOVEDADES</a>" );
    document.writeln( "<p><a href=\"http://www.geocities.com/torosaurio/escept\">Escepticismo</a>" );
    document.writeln( "<p><a href=\"http://www.geocities.com/torosaurio/criticabiblica\">Crítica Bíblica y Religiosa</a>" );
    document.writeln( "<p><a href=\"http://www.geocities.com/torosaurio/creacionismo.html\">Creacionismo</a>" );
    document.writeln( "<p><a href=\"http://www.geocities.com/torosaurio/humor\">Humor</a>" );
    document.writeln( "<p><a href=\"http://www.geocities.com/torosaurio/frases/frases.html\">Frases célebres</a>" );
    document.writeln( "<p><a href=\"http://www.geocities.com/torosaurio/enlext.html\">Enlaces externos</a>" );
    document.writeln( "<p><a href=\"mailto:torosaurio@yahoo.com\">torosaurio@yahoo.com</a>" );
    document.writeln( "</center>" );
    document.writeln( "</font></b></td><td valign='top' bgcolor='#ffffff'>" );

    document.writeln( "<p align='right'>" );
    document.writeln( "<FORM name=\"formulario\">" );
    document.writeln( "  <SELECT NAME=\"menu\" SIZE=1 onChange =\"irA(this)\">" );
    document.writeln( "    <OPTION VALUE=\"\">- - - - Temporalmente desactivado - - - -" );
    document.writeln( "    <OPTION VALUE=\"" + dir + "escept/index.html\">ESCEPTICISMO" );
    document.writeln( "    <OPTION VALUE=\"" + dir + "criticabiblica/index.html\">CRÍTICA A BIBLIA Y TEISMO" );
    document.writeln( "    <OPTION VALUE=\"" + dir + "humor/index.html\">HUMOR" );
    document.writeln( "    <OPTION VALUE=\"" + dir + "creacionismo.html\">CREACIONISMO" );
    document.writeln( "  </SELECT>" );
    document.writeln( "</FORM></p>" );
  }

  function finMenu()
  {
    document.writeln( "<p><span STYLE=\"background: #C6C6CE\"><b><i>" );
    document.writeln( "<font face=\"MS Sans Serif, sans-serif\"><font size=+0>" );
    document.writeln( "<a href=\"javascript:history.go(-1);\">" );
    document.writeln( "Regresar " );
    document.writeln( "</a>" );
    document.writeln( "</font></font></i></b></span>" );
    document.writeln( "</td></tr></table><br>" );
  }

  function irA(menu)
  {
    var dir = menu.options[menu.selectedIndex].value;
    if( dir != "" )
      window.location.href = menu.options[menu.selectedIndex].value;
  }

