function PonerMenu(texto,enlace)

{

document.writeln('<tr>')

if (enlace != "")

   document.writeln('   <td width="100%"><b><a href=' + enlace + '><font face="Arial" color="#808000" size="3">' + texto + '</font></a></b></td>')

else

   document.writeln('   <td width="100%"><b><font face="Arial" color="#3e7299" size="3">' + texto + '</font></a></b></td>')

document.writeln('</tr>')

}



function PonerSubMenu(texto,enlace)

{

document.writeln('<tr>')

if (enlace != "")

   document.writeln('   <td width="100%"><b><a href=' + enlace + '><font face="Arial" color="#808000" size="2">' + texto + '</font></a></b></td>')

else

   document.writeln('   <td width="100%"><b><font face="Arial" color="#808000" size="2">' + texto + '</font></a></b></td>')

document.writeln('</tr>')

}





document.writeln('<table border="0" width="100%" cellspacing="10" cellpadding="0">')



PonerMenu("Homepage","../index.htm")

PonerMenu("¿Cómo Llegar?","como_llegar.htm")

PonerMenu("El Campo","predio.htm")

PonerMenu("Cabañas","cabanas.htm")

PonerMenu("Restaurante","restaurant.htm")

PonerMenu("En Invierno","invierno.htm")

PonerMenu("Pileta","pileta.htm")

PonerMenu("Videos","../videos.htm")

PonerMenu("Contáctenos","contactos.htm")

PonerMenu("Actividades","")



// SubMenu

document.writeln('<td width="100%">')

document.writeln('   <table border="0" width="100%" cellspacing="10" cellpadding="0" height="138">')



PonerSubMenu("- Travesías 4 x 4 y bùsqueda de oro","4x4.htm")

PonerSubMenu("- Cabalgatas Guiadas","cabalgatas.htm")

PonerSubMenu("- Flora y fauna","fauna_flora.htm")

PonerSubMenu("- Arco y Flecha","arqueria.htm")





document.writeln('</table>')

document.writeln('</td>')



document.writeln('</table>')


