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("How to get here","como_llegar.htm")

PonerMenu("Our Ranch","predio.htm")

PonerMenu("Suite and self-contained units","cabanas.htm")

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

PonerMenu("In Winter","invierno.htm")

PonerMenu("Swimming Pool","pileta.htm")

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

PonerMenu("Contact us","contactos.htm")

PonerMenu("Activities","")



// SubMenu

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

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



PonerSubMenu("- Tours by 4 x 4 and Panning for gold","4x4.htm")

PonerSubMenu("- Horseback riding","cabalgatas.htm")

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

PonerSubMenu("- Archery","arqueria.htm")





document.writeln('</table>')

document.writeln('</td>')



document.writeln('</table>')


