
function newlink(fizq,fcontenido)
{

var NombreCliente  = navigator.appName;
var VersionCliente = parseInt(navigator.appVersion); 

if  (NombreCliente == "Netscape" && VersionCliente >= 3)
  version = "n3";
else if (NombreCliente == "Netscape" && VersionCliente == 2) 
  version = "n2";
else if (NombreCliente == "Microsoft Internet Explorer" && VersionCliente >= 3)
  version = "n3";
else
  version = "??";

  document.clear();
  document.write("<html><head><meta http-equiv='Content-Language' content='es'><meta http-equiv='Content-Type' content='text/html; charset=windows-1252'><title>El Camino Real - Turismo rural en el Oriente de Asturias</title></head>");

  if (NombreCliente == 'Microsoft Internet Explorer') pixels=95
  else  pixels = 101;

  document.write('<FRAMESET rows="'+pixels+',*" SCROLLING="no" BORDER=1 FRAMEBORDER=yes border=true frameBorder=1 frameSpacing=1 BORDER marginHeight=0 marginWidth=0 BORDERCOLOR="#996633">')
  document.write('<FRAME NAME="efr_cab"  src="efr_cab.htm" SCROLLING="no" BORDER=1 FRAMEBORDER=yes border=true frameBorder=1 frameSpacing=1 BORDER marginHeight=0 marginWidth=0 BORDERCOLOR="#996633"><FRAMESET COLS="147,*" SCROLLING="no" BORDER=1 FRAMEBORDER=yes frameBorder=1 frameSpacing=2 marginHeight=0 marginWidth=0 BORDER BORDERCOLOR="#996633">');
  document.write('<FRAME NAME="menu" SCROLLING="no" SRC="' + fizq + '" BORDER=1 FRAMEBORDER=yes border=true frameBorder=1 frameSpacing=1 BORDER marginHeight=0 marginWidth=0 BORDERCOLOR="#996633">');
  document.write('<FRAME NAME="contenido" SCROLLING="yes" SRC="' + fcontenido + '" BORDER=1 FRAMEBORDER=yes border=true frameBorder=1 frameSpacing=1 BORDER marginHeight=0 marginWidth=0 BORDERCOLOR="#996633"></FRAMESET>');
  document.write("</FRAMESET><frameset></frameset></frameset></HTML>");

  document.close();

}
