/*

    Autor: Marcin Nabiaek
    Kontakt: mnabialek@o2.pl
    Data utworzenia: 08.11.2005

*/

function openWindow(what, w, h)
{
  var pasek='no';
  if (w>=screen.width)
  {
    w+=40;
    pasek='yes';
  }
  if (h>=screen.height)
  {
    h+=40;
    pasek='yes';
  }
  
  var top;
  var left;
  if (w<screen.width)
    left=(screen.width-w)/2;
  else
    left=0;
  
  if (h<screen.height)   
    top=(screen.height-h)/2;
  else
    top=0; 

  window.open(what,"","height="+h+",width="+w+",status=no,toolbar=no,menubar=no, scrollbars="+pasek+", location=no, left="+left+", top="+top); 
}


function showWin(what,w,h)
{
  if (w>=screen.width)
  {
    w+=40;

  }
  if (h>=screen.height)
  {
    h+=40;

  }
  
  var top;
  var left;
  if (w<screen.width)
    left=(screen.width-w)/2;
  else
    left=0;
  
  if (h<screen.height)   
    top=(screen.height-h)/2;
  else
    top=0; 

  window.open(what,"","height="+h+",width="+w+",status=no,toolbar=no,menubar=no,scrollbars = yes, location=no, left="+left+", top="+top); 

}


function showImg(what,wi)
{
  var pasek='no';
  var wi = (wi == null) ? 800 : wi;
  w=wi+20;
  h=600;
  if (w>=screen.width)
  {
    w+=30;    
  }
  if (h>=screen.height)
  {
    h+=30;
    
  }
  pasek='yes';
  var top;
  var left;
  if (w<screen.width)
    left=(screen.width-w)/2;
  else
    left=0;
  
  if (h<screen.height)   
    top=(screen.height-h)/2;
  else
    top=0; 

  window.open("extra/img.php?img="+what,"","height="+h+",width="+w+",status=no,toolbar=no,menubar=no, scrollbars="+pasek+", location=no, left="+left+", top="+top); 
}

