  function new_window(plik,wys,szer){
    w=window.open(plik,'','menubar,resizable,scrollbars,height='+wys+',width='+szer);
  }

  function new_window3(plik,wys,szer){
    w=window.open(plik,'','status,height='+wys+',width='+szer);
  }

  function new_window4(plik,wys,szer){
    w=window.open(plik,'','height='+wys+',width='+szer);
    //w=window.open(plik,'','resizable,height='+wys+',width='+szer);
  }

  function new_window5(plik,wys,szer){
    w=window.open(plik,'','resizable,scrollbars,height='+wys+',width='+szer);
  }

  function new_window_gal(plik,szer,wys,resized){
    if(resized==true){ w=window.open(plik,'','height='+wys+',width='+szer+',resizable,scrollbars'); }
    else{ w=window.open(plik,'','height='+wys+',width='+szer); }
    //w=window.open(plik,'','resizable,height='+wys+',width='+szer);
  }

