/*

    Autor: Marcin Nabiałek
    Kontakt: mnabialek@o2.pl
    Data utworzenia: 08.11.2005

*/

function openWindow(what, w, h)
{
  var pasek='no';
  if (w>=screen.width)
  {
    w+=30;
    pasek='yes';
  }
  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(what,"","height="+h+",width="+w+",status=no,toolbar=no,menubar=no, scrollbars="+pasek+", location=no, left="+left+", top="+top); 
}
