function wps(z) {
	document.write(z);
}

function chc() {
	if (document.getElementById("t1").value=="" || document.getElementById("t2").value=="" || document.getElementById("t3").value=="") {
		alert("Wypełnij wszystkie pola oznaczone *.");
	} else {
		alert("Twój komentarz został wysłany do moderacji. \nJeśli nie zawiera on treści zabronionych przez prawo, wulgarnych lub obraźliwych, to wkrótce trafi na stronę.");
		document.getElementById("cmtForm").submit();
	}
}

function chk() {
	if (document.getElementById("t1").value=="" || document.getElementById("t2").value=="" || document.getElementById("t3").value=="" || document.getElementById("t4").value=="") {
		alert("Wypełnij wszystkie pola.");
	} else {
		alert("Wiadomość została wysłana. Dziękujemy.");
		document.getElementById("cmtForm").submit();
	}
}

var st = 0;
function sl(id) {
	if (st) {
		document.getElementById(id).style.display="none";
		st = 0;
	} else {
		document.getElementById(id).style.display="";
		st = 1;
	}
	return false;
}

function checkFrame() {
	if(self!=top) top.location.href = self.location.href;
}
setTimeout('checkFrame()', 999);
