/* ------------------------------------------------------------------------------ */
/* Funciones de Ventana --------------------------------------------------------- */
/* ------------------------------------------------------------------------------ */

function showWin(FileName, titulo, nWidth, nHeight, wScroll)
{
 var nTop;
 var nLeft;
 var sAWin;
 
 wWidth=nWidth + 6;
 wHeight=nHeight + 4;
 
 nTop = (screen.height - wHeight) / 2
 nLeft = (screen.width - wWidth) / 2
 sAWin =  "width=" + wWidth + ",height=" + wHeight + 
          ",top=" + nTop + ",left=" + nLeft + ",scrollbars=" + wScroll

 if (window.ventana && !(window.ventana.closed))
  window.ventana.close();
 
 ventana=window.open("", "ImageWindow", sAWin);
 ventana.document.write('<html><head><title>'+ titulo +'</title></head>');
 ventana.document.write('<BODY BGCOLOR=#ffffff TEXT=#FFFFCC LINK=#33CCFF VLINK=#FF6666 leftmargin=0 topmargin=0>');
 ventana.document.write('<table width="100%" height="100%"><tr><td with="100%" height="100%" align="center" valign="middle"><img src="' + FileName + '"></td></tr><table></body></html>');
 ventana.document.close();
}

