function showhide(idex) {
	el = document.getElementById(idex).style;
	el.display = (el.display == "block") ? "none" : "block";
}

pridat_prispevek_form = "false";
function togglePridatPrispevek() {
	if (pridat_prispevek_form == "false") {
		$('#pridat-prispevek').fadeIn('normal');
		pridat_prispevek_form = "true";
		return false;
	} else {
		$('#pridat-prispevek').fadeOut('normal');
		pridat_prispevek_form = "false";
		return false;
	}
}

function vyprazdni_kod() {
	if (document.pridatprispevekform.cislo.value == "sem přepište kód z obrázku") {
		document.pridatprispevekform.cislo.value = "";
		document.pridatprispevekform.cislo.focus();
		return false;
	}
}

function vypln_kod() {
	if (document.pridatprispevekform.cislo.value == "") {
		document.pridatprispevekform.cislo.value="sem přepište kód z obrázku";
		return false;
	}
}

