function pokaz(id) {
	document.getElementById("wiecej"+id).style.display="none";
	document.getElementById("rozw"+id).style.display="block";
}

function sprawdzFormularz() {
	if (document.getElementsByName("s_nazwa")[0].value.length<1) {
		alert("Wymagana jest nazwa strony");
		document.getElementsByName("s_nazwa")[0].focus();
		return false;
	}
	str = document.getElementsByName("s_tid")[0].value;
	if (str.length<1) {
		alert('Wymagana jest nazwa strony w jej adresie w konwencji "nazwa_w_adresie".');
		document.getElementsByName("s_tid")[0].focus();
		return false;
	}	
	for (i=0;i<str.length;i++)
	{
		if ((str.substring(i,i+1)<"A" || str.substring(i,i+1)>"Z") && (str.substring(i,i+1)<"a" || str.substring(i,i+1)>"z") && (str.substring(i,i+1)<"0" || str.substring(i,i+1)>"9") && str.substring(i,i+1)!="_" && str.substring(i,i+1)!="-") {
			alert("Niedozwolony znak w adresie.");
			document.getElementsByName("s_tid")[0].focus();
			return false;
		}
	}
	return true;
}

function goWhenConfirmed(targetLocation) {	
	if (window.confirm("Czy na pewno chcesz usunąć ten element?")) {
		document.location=targetLocation;
	}
}

function popup(url, width, height, scrollbars)
{ 
	if (scrollbars==undefined) { 
		scrollbars="yes"; 
	} 
	window.open(url,"_blank","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars="+scrollbars+", resizable=yes, width="+width+", height="+height);
}
