function toggleHiddenPost(postObjId, linkObj) {
	postObj = document.getElementById('hidden-post-content-'+postObjId);
	infoObj = document.getElementById('hidden-post-info-'+postObjId);
	if (postObj.style.display == "" || postObj.style.display == "none") {
		linkObj.innerHTML = "+ kliknij, aby schować post<br />&nbsp;";
		infoObj.style.display = "none";
		postObj.style.display = "block";
	}
	else {
		linkObj.innerHTML = "+ kliknij, aby przeczytać post<br />&nbsp;";
		infoObj.style.display = "inline";
		postObj.style.display = "none";
	}
}