miesNazwa = new Array("stycznia ", "lutego ", "marca ", "kwietnia ", "maja ", "czerwca ", "lipca ", "sierpnia ", "września ", "października ", "listopada ", "grudnia ")

function aktInfo() {
update = new Date(document.lastModified);
mies = update.getMonth();
dzien = update.getDate();
rok = update.getFullYear();
document.forms[0].dataAkt.value = dzien + " " + miesNazwa[mies] + rok + "r.";
}

var nOkno;
function zoom(adr,szer,wys) {
if (!nOkno || nOkno.closed) {
    nOkno = window.open("","","width="+szer+",height="+wys+",resizable=0,screenX=0,screenY=0");
    if (!nOkno.opener) {
        nOkno.opener = window;
        }
        var kod = "<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>";
        kod += "<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'><head><meta http-equiv='Content-Type' content='text/html; charset=ISO-8859-2' /><title>Turystyka - Galeria</title><link rel='stylesheet' href='styl/zoom.css' type='text/css' /></head>";
        kod += "<body lang='pl-PL'><a href='javascript:window.close()'><img src='"+adr+"' id='obr' width='"+szer+"' height='"+wys+"' title='Zamknij okno' alt='Fotografia' /></a>";
        kod += "</body></html>";
    nOkno.document.write(kod);
    nOkno.document.close();
    }
    else {
          nOkno.focus();
          }
}
