function validate_kontakt() {
if (document.kont.temat.value == "") {
alert('Proszę podać temat Twojej wiadomości');
document.kont.temat.focus();
return false;
}
if (document.kont.tresc.value == "") {
alert('Proszę wpisać treść Twojej wiadomości');
document.kont.tresc.focus();
return false;
}
if (document.kont.od.value == "") {
alert('Proszę wpisać Twój adres e-mail');
document.kont.od.focus();
return false;
}
return true;
}

function foto(url, width, height, s, wx, xx, i) {
wx=(screen.width/2)-(width/2);
xx=(screen.height/2)-(height/2);
Okno = window.open('module/foto_open.php?hash='+url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=' + s + ',menubar=no,left=' + wx + ',top=' + xx);
Okno.focus();
}

function foto_big(url, width, height, s, wx, xx, i) {
wx=(screen.width/2)-(width/2);
xx=(screen.height/2)-(height/2);
Okno = window.open('module/foto_open_big.php?hash='+url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=' + s + ',menubar=no,left=' + wx + ',top=' + xx);
Okno.focus();
}
