function ukaz_novinku(id) {
	if (document.getElementById("show_"+id).style.display == ""){
		show = "none";
	}
	else{
		show = "";
	}
	document.getElementById("show_"+id).style.display = show;
}

