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=' + s + ',menubar=no,left=' + wx + ',top=' + xx);
Okno.focus();
}

function validate_cont() {
if (document.cont.title.value == "") {
alert('Proszę podać temat Twojej wiadomości');
document.cont.title.focus();
return false;
}
if (document.cont.txt.value == "") {
alert('Proszę wpisać treść Twojej wiadomości');
document.cont.txt.focus();
return false;
}
if (document.cont.from.value == "") {
alert('Proszę wpisać Twój adres e-mail');
document.cont.from.focus();
return false;
}
return true;
}

