<!--
function imprimirPagina() {
  if (window.print)
    window.print()
  else
    alert("Esta función no es soportada por su navegador.");
}

function recomendarPagina() {
  mail_str = "mailto:?subject=" + document.title;
  mail_str += "&body=Te recomiendo ver esta página: " + document.title;
  mail_str += " (" + location.href + ")"; 
  location.href = mail_str;
}

document.write("<table width='730' border='0' cellspacing='0' cellpadding='0'>");
document.write("<tr><td>");
document.write("<img src='http://www.losglaciares.com/es/img/cabecera.jpg' width='730' height='80' border='0' usemap='#menulogo'>");
document.write("<map name='menulogo'>");
document.write("<area shape='rect' coords='420,66,520,80' href='javascript:imprimirPagina()'>");
document.write("<area shape='rect' coords='523,66,639,80' href='javascript:recomendarPagina()'>");
document.write("<area shape='rect' coords='642,66,720,80' href='http://www.losglaciares.com/en/index.html'>");
document.write("<area shape='rect' coords='0,0,200,80' href='http://www.losglaciares.com/es/index.html' target='_self'></map>");
document.write("</td>");
document.write("</tr></table>");
//End Script -->