function ShowFoto(foto)
{
  //alert(1);
  url   = 'podglad.php?foto=' + foto;
  opcje	= '"toolbar=0,location=0,directories=0,status=1,statusbar=0,menubar=0,top=0,left=0,screenX=0,screenY=0,scrollbars=0,resizable=0,width=300, height=300';
  window.open(url, "", opcje);  
}

function PronceMini(file)
{
  url   = file;
  opcje	= '"toolbar=0,location=0,directories=0,status=1,statusbar=0,menubar=0,top=0,left=0,screenX=0,screenY=0,scrollbars=0,resizable=0,width=300, height=300';
  window.open(url, "", opcje); 
}

function waitDivFlash()
{
  ns4 = (document.layers)? true:false;
  ie4 = (document.all) && !(document.getElementById)? true:false;
  ie5 = (document.getElementById) && (document.all)? true:false;
  ns6 = (document.getElementById) && !(document.all)? true:false;

  winW = (ns4||ns6)? window.innerWidth-18 : document.body.offsetWidth-20;
  winH = (ns4||ns6)? document.documentElement.clientHeight : document.body.offsetHeight;
  
  //alert(winW + ' - ' +winH);
  
  document.getElementById('waitDivFlash').style.width  = winW + 'px';
  document.getElementById('waitDivFlash').style.height = winH + 'px';
  
  document.getElementById('waitDivFlash').style.visibility = 'visible';
}

