function Menu( cModo, nAncho, cOpcion ){
    var Dir, Frm;
    Frm = '_top'
    cSep = '&nbsp;';
    Dir = (cModo == undefined ) ?  "../" : cModo;
    nAncho = (nAncho == undefined ) ? "620" : nAncho;
    cOpcion = (cOpcion == undefined ) ? " "  : cOpcion;
    o = cOpcion.charAt(0);
    document.write('<Div class="Menu" width="'+nAncho+'" align="Right">');
    document.write('<A HREF="'+Dir+'index.html" target="'+Frm+'">Inicio</A>\r');
    if (o != 'N')
	  document.write(cSep+'<A HREF="'+Dir+'intro/intro.htm" target="'+Frm+'">Introducci&oacute;n</A>\r');
    if (o != 'I')
	  document.write(cSep+'<A HREF="'+Dir+'indice/indice.htm" target="'+Frm+'">Indice</A>\r');
    if (o != 'M')
      document.write(cSep+'<A HREF="'+Dir+'mapa/mapa.htm" target="'+Frm+'">Mapa</A>\r');
    if (o != 'R')
	  document.write(cSep+'<A HREF="'+Dir+'top.htm" target="'+Frm+'">Recomendados</A>\r');
    if (o != 'D')
	  document.write(cSep+'<A HREF="'+Dir+'diccio/terminos.htm" target="'+Frm+'">Diccionario</A>\r');
    if (o != 'B')
      document.write(cSep+'<A HREF="'+Dir+'biblio.htm" target="'+Frm+'">Bibliograf&iacute;a</A>\r');
    if (o != 'E')
      document.write(cSep+'<A HREF="'+Dir+'enlaces.htm" target="'+Frm+'">Enlaces</A>\r');
    document.write('</div>');
    eval( parent.location="http://www.castillosdepalencia.com/index.html");
}


function MostrarPie(silueta, texto, mapa ){
    document.write('<DIV class="Pie">');
    document.write('<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0" WIDTH="620"><TR>');
    document.write('<TD WIDTH="121">');
    if (silueta == "") { document.write('<IMG SRC="silueta.gif" HEIGHT="198" WIDTH="121"></TD>');}
    else { document.write('<IMG SRC="'+silueta+'" HEIGHT="198" WIDTH="121"></TD>');}
    document.write('<TD VALIGN="TOP"><BR>'+texto+'</TD>');
    document.write('<TD ALIGN="RIGHT" WIDTH="250"><IMG SRC="mapa.gif" HEIGHT="160" WIDTH="240" ALIGN="RIGHT"></TD>');
    document.write('</TR></TABLE></DIV>');
}


function ItemMenuLat(nombre, url, label){
    document.write('<a href="'+url+'" target="Texto">');
    if (label != "") { document.write('<acronym title="'+label+'">'); }
    document.write(nombre);
    if (label != "") { document.write('</acronym>'); }
    document.write( '<br>');
  }

function ItemMenuMain(nombre, url, label){
    document.write('<a href="'+url);
    if (label != "") { document.write('<acronym title="'+label+'">'); }
    document.write(nombre);
    if (label != "") { document.write('</acronym>'); }
    document.write( '<br>');
  }

