PositionX = 100;
PositionY = 100;
defaultWidth = 600;
defaultHeight = 600;
var AutoClose = true;
if (parseInt(navigator.appVersion.charAt(0))>=4)
{
  var isNN=(navigator.appName=="Netscape")?1:0;
  var isIE=(navigator.appName.indexOf("Microsoft")!=-1)?1:0;
}
var optNN='scrollbars=no,width='+defaultWidth+',height='+defaultHeight+',left='+PositionX+',top='+PositionY;
var optIE='scrollbars=no,width=600,height=600,left='+PositionX+',top='+PositionY;
function popImage(imageURL,imageTitle)
{
  if (isNN)
  {
    imgWin=window.open('','',optNN);
  }
  if (isIE)
  {
    imgWin=window.open('','',optIE);    
  }
  with (imgWin.document)
  {
    writeln('<html>')
    writeln(' <head>')
    writeln('   <title>Cargando ...</title>');
    writeln('   <link href="estilos/estilos.css" rel="stylesheet" type="text/css">');
    writeln(' </head>');
    writeln(' <body>');
    writeln('   <div id="cabecera_foto"><h2>'+imageTitle+'</h2></div>');
    writeln('   <div id="contenido_foto"><img name="imagenes" src='+imageURL+'></div>');
    writeln('   <div id="pie_foto">La Posada de Oscos Ventoso Asturias</div>');
    writeln(' </body>');
    writeln('</html>');
    close();
  }
}