noweOkienko = null;
function galeria(src, w, h){
  if(window.screen){
    aw=screen.availWidth;
    ah=screen.availHeight;
  }else{
    aw=640;
    ah=450;
  }
  if(noweOkienko==null || noweOkienko.closed){
    ustawienia=
     "left=" + (aw-w)/2 + ","
    +"top=" + (ah-h)/2 + ","
    +"screenX=" + (aw-w)/2 + ","
    +"screenY=" + (ah-h)/2 + ","
    +"width=" + w + ","
    +"height=" + h + ","
    +"innerWidth=" + w + ","
    +"innerHeight=" + h + ","
    +"toolbar=no,"
    +"location=no,"
    +"directories=no,"
    +"status=no,"
    +"menubar=no,"
    +"scrollbars=no,"
    +"resizable=no"
    noweOkienko = window.open('','obrazek',ustawienia);
  }
  noweOkienko.document.open();
  noweOkienko.document.clear();
  noweOkienko.document.write(
     "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\"><html><head>\n"
  	  +"<title>Orbitek Straszęcin</title>"
  	  +"<meta http-equiv=\"Content-type\" content=\"text/html; charset=iso-8859-2\">"
    +"<style type=\"text/css\"><!--\n"
    +"body{background-repeat:no-repeat}\n"
    
    +"--></style>\n"
    +"</head>\n"
    +"<body background=\"" + src + "\"></body>\n"
    +"</html>"
  );
  noweOkienko.document.close();
  noweOkienko.focus();
}
