var xChildWindow = null;
function xWinOpen(sUrl){
   var features = "left=0,top=0,width=0,height=0,location=0,menubar=0,resizable=1,scrollbars=0,status=0,toolbar=0";
   if (xChildWindow && !xChildWindow.closed) {xChildWindow.location.href=sUrl;}
   else {xChildWindow = window.open(sUrl, "NopinGaleria", features);}
   xChildWindow.focus();
}
function abrirVentanaAdaptable(urlImg){
   xWinOpen('about:blank');
   with(xChildWindow.document){
      writeln('<html><head><title>Nopin</title></head>');
      writeln('<body style="margin:auto; text-align:center" onload="window.resizeTo(document.images[0].width,document.images[0].height+60)">');
      writeln('<img src="'+urlImg+'" style="border:0"/>');
      writeln('</body></html>');
      close();
   }/*
   var ventana=xWinOpen(urlImg);
   ventana.resizeTo(document.images[0].width,document.images[0].height);*/
}

