<!--

/****************************************************
if you want to use this code or its parts, please feel free to do it but state the autor
Adam Gawelczyk (gawelczyk@bieszczady.info) copyrigth 2002
****************************************************/

function otworz_okno(){
var tt,ll,ww,hh, atrybuty, id;
id= otworz_okno.arguments[0];
//ww=480;
//hh=430;
ww= ((screen.availWidth)*3/4);
hh= ((screen.availHeight)*2/3);
ll=1; tt=1;
atrybuty="toolbar=no,location=no,directories=no,menubar=no,status=yes,resizable=yes,scrollbars=yes,";
atrybuty=atrybuty + "width=" + ww + ",height=" + hh + ",top=" + tt + ",left=" + ll;
window.open(id,"",atrybuty);
}

function forma_email_check() {

if (document.forma2.email.value!="") {
	var str=document.forma2.email.value;
	var re=/^[\w-\.]+@[\w-]+(\.\w+)+$/;
	var wynik=str.match(re);
	if (!wynik) {
		alert("Proszę podać prawidłowy adres email'owy!"); 
		document.forma2.email.focus(); 
	return false;
	}
}  else {
		alert("Proszę podać adres email'owy!"); 
		document.forma2.email.focus(); 
		return false;
}

if (document.forma2.tytul.value=="") {
    alert("Proszę podać tytuł");
    document.forma2.tytul.focus();
    return false;
}


if (document.forma2.tresc.value=="") {
    alert("Proszę wpisać treść ogłoszenia");
    document.forma2.tresc.focus();
    return false;
}

return true;

}
/***********************************************************/

//-->

