var RecaptchaOptions = {
   theme : 'white'
};

var puv_vyska_menu;

function pageHeight() {
	//zarovnava vysku stranky na nasobek 15-ti aby nam sedel vzorek
	
	//spocitame potrebnou vysku
	var pom = (document.getElementById('telo').clientHeight - (document.getElementById('telo').clientHeight % 15) + 15);
	//minimalni vysku stanovime na 1000px
	if (pom < 1000) {
		pom = 1000;
	}
	//odecteme vysku vrsku a spodku
	pom -= document.getElementById('hlavicka').clientHeight + document.getElementById('paticka').clientHeight;
	//nastavime vysku stredu
	document.getElementById('obsah').style.height = pom + 'px';
}

function potvrditAkci(hlaska)
	{
	return window.confirm(hlaska);
	}

/* zvyraznovani radku tabulky */
function light(rid) {
	document.getElementById('tr_'+rid).style.backgroundColor = '#e0e1e5';
	document.getElementById('tr_'+rid).style.cursor = 'pointer';
}

function dark(rid) {
	document.getElementById('tr_'+rid).style.backgroundColor = '';
}

function light_u(ridu) {
	document.getElementById('t_'+ridu).style.backgroundColor = '#e0e1e5';
	document.getElementById('t_'+ridu).style.cursor = 'pointer';
}

function dark_u(ridu) {
	document.getElementById('t_'+ridu).style.backgroundColor = '';
}

function OpenURL(a,b,c) {
	window.open(a,b,c);
	return false;
}


