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 validate_szukaj() {
if (document.post.szukaj.value == "") {
alert('Proszę wpisać szukane słowo...');
document.post.szukaj.focus();
return false;
}
return true;
}

function foto_zobacz(url,id,width,height,s) {
wx=(screen.width/2)-(width/2);
xx=(screen.height/2)-(height/2);
Okno = window.open('module/foto_open.php?f='+url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=' + s + ',menubar=no,left=' + wx + ',top=' + xx);
Okno.focus();
}

function foto(url, width, height, s, wx, xx, i) {
wx=(screen.width/2)-(width/2);
xx=(screen.height/2)-(height/2);
 Okno =
 window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no,left=' + wx + ',top=' + xx);
Okno.focus();
}

function focus(f1,f2) {
eval("document."+f1+"."+f2+".select();");
eval("document."+f1+"."+f2+".focus();");
}

