function stahni_data(funkce, idcko, obsah, delic) {
	if (funkce != '') {
		if (window.ActiveXObject) {
			httpRequest = new ActiveXObject("Microsoft.XMLHTTP");
		} else {
			httpRequest = new XMLHttpRequest();
		}
		url = '/ajax.html?funkce='+funkce+'&idcko='+idcko+'&obsah='+obsah+'&delic='+delic+'&cache='+Math.random();
		httpRequest.open("GET", url, true);
		httpRequest.onreadystatechange= function () {processRequest(idcko); } ;
		httpRequest.send(null);
	}
}
function processRequest(idcko) {
	if (httpRequest.readyState == 4) {
		if(httpRequest.status == 200) {
			var mistoZobrazeni = document.getElementById(idcko);
			if(httpRequest.responseText.substr(0, 4) == "JS: ") {
				eval(httpRequest.responseText.substr(4));
			} else {
				mistoZobrazeni.innerHTML = 'nacitam...';
				mistoZobrazeni.innerHTML = httpRequest.responseText;
			}
		}
	}
}
function zobraz(kolik) {
	if(document.getElementById("makler_foto_lista_obr").styleName == "rozbaleno") {
		document.getElementById("makler_foto_lista_obr").styleName = "";
		document.getElementById("makler_foto_lista_obr").style.whiteSpace = "nowrap";
		document.getElementById("makler_foto_lista_obr").style.width = "326px";
		document.getElementById("makler_foto_lista").style.width = "326px";
		document.getElementById("makler_foto_lista").style.margin = "0";
		document.getElementById("stmivatko").innerHTML = '<img src="/css/zoom.gif" alt="" /> zobrazit všechny náhledy ['+kolik+']';
	} else {
		document.getElementById("makler_foto_lista_obr").styleName = "rozbaleno";
		document.getElementById("makler_foto_lista_obr").style.whiteSpace = "normal";
		document.getElementById("makler_foto_lista_obr").style.height = "76px";
		if(kolik < 5) {
			//nic
		}
		if(kolik == 5) {
			document.getElementById("makler_foto_lista_obr").style.width = "377px";
			document.getElementById("makler_foto_lista").style.width = "377px";
		}
		if(kolik == 6) {
			document.getElementById("makler_foto_lista_obr").style.width = "450px";
			document.getElementById("makler_foto_lista").style.width = "450px";
		}
		if(kolik == 7) {
			document.getElementById("makler_foto_lista_obr").style.width = "525px";
			document.getElementById("makler_foto_lista").style.width = "525px";
		}
		if(kolik > 7) {
			document.getElementById("makler_foto_lista_obr").style.width = "600px";
			document.getElementById("makler_foto_lista").style.width = "600px";
		}
		document.getElementById("makler_foto_lista_obr").style.height = "auto";
		document.getElementById("makler_foto_lista").style.margin = "0 -370px 0px 0";
		document.getElementById("stmivatko").innerHTML = '<img src="/css/zoom.gif" alt="" /> skrýt náhledy ['+kolik+']';
	}
}

function zmensit(sirka, vyska) {
	if(sirka > vyska) {
		if(sirka > 320) {
			vyska = Math.round((320*vyska)/sirka);
			sirka = 320;
		}
	} else {
		if(vyska > 240) {
			sirka = Math.round((240*sirka)/vyska);
			vyska = 240;
		}
	}
	document.getElementById("zvetsena").innerHTML = '';
	document.getElementById("foto_show_img").style.marginTop = Math.round((240-vyska)/2)+"px";
	document.getElementById("foto_show_img").style.width = Math.round(sirka)+"px";
	document.getElementById("foto_show_img").style.height = Math.round(vyska)+"px";
}

function zvetsit(sirka, vyska, cislo, max) {
	if(sirka > vyska) {
		if(sirka > 640) {
			vyska = Math.round((640*vyska)/sirka);
			sirka = 640;
		}
	} else {
		if(vyska > 480) {
			sirka = Math.round((480*sirka)/vyska);
			vyska = 480;
		}
	}
	krizky = '';
	if(cislo > 1) {
		krizky += '<a href="#" id="prev" title="předchozí obrázek" onclick="aktivuj2('+(cislo-1)+'); return false;">&lt;</a>';
	} else {
		krizky += '<a href="#" id="prev" title="poslední obrázek" onclick="aktivuj2('+max+'); return false;">&laquo;</a>';
	}
	if(cislo < max) {
		krizky += '<a href="#" id="next" title="následující obrázek" onclick="aktivuj2('+(cislo+1)+'); return false;">&gt;</a>';
	} else {
		krizky += '<a href="#" id="next" title="první obrázek" onclick="aktivuj2('+1+'); return false;">&raquo;</a>';
	}
	krizky += '<a id="stop" onclick="zmensit('+sirka+', '+vyska+');" title="zmenšit obrázek">X</a>';
	document.getElementById("zvetsena").innerHTML = '<div id="zvetsena2"><div id="zvetsena3"><div id="zvetsena3_popisek"><a href="#" class="right" onclick="zmensit('+sirka+', '+vyska+'); return false;"><img src="/css/zoom.gif" alt="" /> zmenšit obrázek</a>'+document.getElementById("makler_foto_popisek_text").innerHTML+'</div><div id="zvetsena3_img" onclick="zmensit('+sirka+', '+vyska+'); return false;"><img id="foto_show_img2" src="'+document.getElementById("foto_show_img").src+'" alt="" /></div>'+krizky+'</div></div>';
	document.getElementById("foto_show_img2").style.marginTop = Math.round((480-vyska)/2)+"px";
	document.getElementById("foto_show_img2").style.width = Math.round(sirka)+"px";
	document.getElementById("foto_show_img2").style.height = Math.round(vyska)+"px";
}

function aktivuj3(prvek, co, jak, toto) {
	zmen_class(prvek, co, jak);
	toto.className = "zalo akti";
	document.getElementById("zalozky_obsah").innerHTML = '<div class="center">načítám...<img src="/css/loader.gif" alt="" /></div>';
}

function zmen_class(prvek, co, jak) {
	//projit vsechny "prvek" maj className = "co" a nastavit ho na "jak"
	var colNot3 = document.getElementsByTagName(prvek);
	for (var i = 0; i < colNot3.length; i++) {
		if (colNot3[i].className == co) {
			colNot3[i].className = jak;
		}
	}
}

function aktivuj2(cislo, max) {
	document.getElementById("foto"+cislo).onclick();
	document.getElementById("foto_show_a").onclick();
}

function aktivuj(toto, sirka, vyska, cislo, max) {
	x = sirka;
	y = vyska;
	if(sirka > vyska) {
		if(sirka > 320) {
			vyska = Math.round((320*vyska)/sirka);
			sirka = 320;
		}
	} else {
		if(vyska > 240) {
			sirka = Math.round((240*sirka)/vyska);
			vyska = 240;
		}
	}
	document.getElementById("makler_foto_popisek_text").innerHTML = toto.title;
	zmen_class("a", "foto aktivni_foto", "foto");
	toto.className ="foto aktivni_foto";
	document.getElementById("makler_foto_show").innerHTML = '<a href="'+toto.href+'" id="foto_show_a" onclick="zvetsit('+x+', '+y+', '+cislo+', '+max+'); return false;"><img id="foto_show_img" src="'+toto.href+'" alt="" /></a>';
	document.getElementById("foto_show_img").style.width = Math.round(sirka)+"px";
	document.getElementById("foto_show_img").style.height = Math.round(vyska)+"px";
	document.getElementById("foto_show_img").style.marginTop = Math.round((240-vyska)/2)+"px";
}


function showka() {
	if(document.getElementById("shovka")) {
		if(document.getElementById("shovka").style.display == "none") {
			document.getElementById("showka_popis").innerHTML = '<a class="right" href="#" onclick="showka(); return false;" >skrýt</a>';
			document.getElementById("shovka").style.display = "inline";
		} else {
			document.getElementById("showka_popis").innerHTML = '...<a class="right" href="#" onclick="showka(); return false;" >zobrazit pokračování</a>';
			document.getElementById("shovka").style.display = "none";
		}
	}
}
