function displayCenterWindow(url, nazwa, Jwidth, Jheight) {
	var Win = window.open(url, nazwa, 'toolbar=no,menubar=no,scrollbars=no,resizable=no,height='+Jheight+',width='+Jwidth+',left=' + ((screen.width/2) - (Jwidth/2)) + ',top=' + ((screen.height/2) - (Jheight/2)));
	Win.focus();
}

function displayScrollCenterWindow(url, nazwa, Jwidth, Jheight) {
	var Win = window.open(url, nazwa, 'toolbar=no,menubar=no,scrollbars=yes,resizable=no,height='+Jheight+',width='+Jwidth+',left=' + ((screen.width/2) - (Jwidth/2)) + ',top=' + ((screen.height/2) - (Jheight/2)));
	Win.focus();
}

function displayWindow(url, nazwa, Jwidth, Jheight) {
	var Win = window.open(url, nazwa, 'toolbar=no,menubar=no,scrollbars=no,resizable=no,height='+Jheight+',width='+Jwidth+',left=0,top=0');
	Win.focus();
}

//sprawdza czy podano jakis tekst (nie zostawiono pola pustego
function sprawdzTekst(poleTxt, komunikat){
	if(poleTxt.value.length < 1){
		alert(komunikat);
		poleTxt.focus();
		return false
	}
	return true;
}
