
// pop-up vokno s detailem akce
function detail_okno(id) {
	var top, left;
	var width, height;
	
    sirkaPlochy = screen.availWidth
    vyskaPlochy = screen.availHeight	

	width=500;
	height=600;
	
	top=100;
	left=(sirkaPlochy - width) / 2;	// spocitam a dam na stred
	

	window.open("./detail.php?id="+id+"", "_blank", "width=" + width + ",height=" + height + ",top="+top+",left="+left+",resizable=yes,scrollbars=yes");
	}
	
	
// zavre pop-up s detailem akce
function zavri_okno() {
	window.close();
	}
	
	
/**
 *	vypne | zapne policko pro zadavani dalsiho datumu (dadum_do)
 *	spusti se, pokud uzivatel zaskrtne, ze akce je jednodenni
 */
function on_off(id, id2) {
	el=document.getElementById(id);
	
	if (!el.disabled) {
		el.disabled = true;
		el.value = document.getElementById(id2).value;
		}
		
	else if (el.disabled) {
		el.disabled = false;
		}	
	}
	
	
	
function potvrditSmazani() {
  return confirm("Vážně to chceš smazat?");   
}
		
	