function newwndw(nurla, wx, wy){
	window.open(nurla,"foto"," width="+wx+",scrollbars=yes, toolbar=no, location=no, directories=no, status=yes, menubar=no,  resizeable=no,height=100\"");}	

function FormValidator(theForm) {
	var email=/^[A-Za-z0-9]+([_\.-][A-Za-z0-9]+)*@[A-Za-z0-9]+([_\.-][A-Za-z0-9]+)*\.([A-Za-z]){2,5}$/i;
	if (!email.test(theForm.email.value)) {
    alert("Podaj prawidłowy adres email.");
    theForm.email.focus();
    return (false);
  	}	
}
