// --- OTEVIRACI BOX ---//
var SizeMe, isOpen, MaxWidth, Timer, SizePx, numerouno;
	
isOpen = false; // je otevreno
Timer = 50; // v ms
MaxWidth = 60; // maximalni vyska
SizePx = 20; // o kolik se zvetsuje

function openDiv(numerouno) {
	var el = document.getElementById("zalozka");
	var tl = document.getElementById("tlacitko");
	var tmp;

	if(!el) return false;
	
	tmp = parseInt(el.style.height) ? (parseInt(el.style.height)+SizePx) : SizePx; 
	
	if (tmp >= MaxWidth && isOpen == true){
		clearInterval(SizeMe);
		SizeMe = setInterval('closeDiv()', Timer);
		return false;
	}

	el.style.height = tmp + "px"; 
	el.innerHTML  = document.getElementById("text"+ numerouno).innerHTML;
	
	if (tmp == MaxWidth){
		clearInterval(SizeMe);
		tl.value = "zmensi";
		isOpen = true;
	}
}

function closeDiv(){
	var el = document.getElementById("zalozka");
	var tl = document.getElementById("tlacitko");
	var tmp;

	if(!el) return false;
	
	tmp = parseInt(el.style.height) ? (parseInt(el.style.height)-SizePx) : SizePx; 
	
	el.style.height = tmp + "px"; 
	
	if (tmp <= 0){
		clearInterval(SizeMe);
		tl.value = "zvetsi";
		isOpen = false;
	} else {
		isOpen = true;
	}
}
// --- KONEC OTEVIRACI BOX ---//

// --- POPUP OBRAZEK Titulkem, Podtitulkem a autorem ---//
var pole;
function galerie(pole) {

	var vyska = parseInt(pole[1])+100;
	var sirka = pole[0];
	var titlebody = "height="+vyska+",width="+sirka+",resizable=1,scrollbars=auto";
	var imgInfo = "<div class='popupImgInfo'><strong>"+pole[2]+"</strong><br /><span>"+pole[4]+"</span><br /><span class='date'>"+pole[8]+",</span>&nbsp;Autor:&nbsp;<a href='"+pole[7]+"' title='"+pole[5]+"&nbsp;"+pole[6]+"'>"+pole[5]+pole[6]+"</a></div>";

	newwindow=window.open('','name',titlebody);
	newwindow.document.write('<html><head><title>Galerie</title><link rel="stylesheet" href="/default/default/kostra.css" type="text/css" media="all"/><link rel="stylesheet" href="/default/default/styly.css" type="text/css" media="all"/><link rel="stylesheet" href="/zelenavlna/default/barvy.css" type="text/css" media="all"/></head><body style="background-color:#E6E7E6" leftMargin="0" topMargin="0" MARGINHEIGHT="0 " MARGINWIDTH="0">');
	newwindow.document.write('<div align="center">');
	//newwindow.document.write(imgInfo);
	newwindow.document.write('<img title="po kliknutí se popup okno zavøe"  onclick="window.close()"  border="0" src="http://www.rozhlas.cz/_obrazek/');
	newwindow.document.write(pole[3]);
	newwindow.document.write('" />');
	newwindow.document.write(imgInfo);
	newwindow.document.write('</div>');
	newwindow.document.write('</body></html>');
	newwindow.document.close();
}
// --- KONEC popup ---//


// --- POPUP OBRAZEK Titulkem, Podtitulkem a autorem ---//
function fantazin(file) {
	var w=640;
	var h=750;
	var l=(screen.width-w-40);
	var t=(20);

	window.open (file,'_blank','scrollbars=0,status=0,menubar=0,resizable=1,location=0,toolbar=0,width=' + w +
	',height=' + h + ',left=' + l + ',top=' + t);
	//location.href='/deti/fantazin/'
}
// --- KONEC popup ---//

