/* FGF 03NOV2003 08GEN2004*/ 

function aprifinestra(immagine,dim_foto_oriz,dim_foto_vert,didascalia,pos_dida,color_dida)
{
var dim_schermo_or =  screen.width;
var dim_schermo_ver = screen.height;
var rapp_bh_scr = dim_schermo_or / dim_schermo_ver;
var rapp_bh_img = 1;
/*  pos_dida     a = alto     b = basso  */
/*  bn_dida      b = bianco   n = nero   */

var y_dida;

var imgn = new Image;
imgn.src = immagine;

var i = 0
var a=""

// controlla l'orientamento della foto e se ci sta nello schermo
rapp_bh_img = dim_foto_oriz / dim_foto_vert;

if (rapp_bh_img >= rapp_bh_scr)   
  {
  if (dim_foto_oriz > dim_schermo_or-50)
   {
    dim_foto_oriz=dim_schermo_or - 75;
    dim_foto_vert=dim_foto_oriz / rapp_bh_img;
   }
  }
 else                             
  {
  if (dim_foto_vert > dim_schermo_ver-50)
   {
    dim_foto_vert=dim_schermo_ver - 75;
    dim_foto_oriz=dim_foto_vert * rapp_bh_img;
   }
  }

var lar_fin=dim_foto_oriz+0;
var alt_fin=dim_foto_vert+0;

sinistra=(dim_schermo_or-lar_fin)/2;
alto=(dim_schermo_ver-alt_fin-100)/2;
if(alto < 0) { alto=0; }
if(sinistra < 0) { sinistra=0; }

y_dida = 4;
if (pos_dida == "b") { y_dida = dim_foto_vert - 20 }

var miafinestra=window.open("","","left="+sinistra+",top="+alto+",width="+lar_fin+",height="+alt_fin+",menubar=no,toolbar=no,status=no");
miafinestra.document.open();
miafinestra.document.write('<html><head></head><body topmargin="0" leftmargin="0">');
miafinestra.document.write('<img src="' + immagine + '" width="'+dim_foto_oriz+'",height="'+dim_foto_vert+'"><br>');
miafinestra.document.write('<p style="position: absolute; left: 4; top: '+y_dida+'; z-index: 1"><b><font color="'+color_dida+'">'+didascalia+'</b></font>');
miafinestra.document.write('</body></html>');
miafinestra.document.close();
}
