// JavaScript Document
function textHore(){
	oText = document.getElementById("text");
	oText.style.zIndex = "2";
}

function textDole(){
	oText = document.getElementById("text");
	oText.style.zIndex = "0";
}
function zobraz_detail_produktu(id){
	var winl = (screen.width - 740) / 2;
	var wint = (screen.height - 485) / 2;
	
	window.open("detail_produktu.php?id="+id, "detail_produktu", 'menubar=0, titlebar=0, resizable=1, width=740, height=490, top=' + wint + ',left=' + winl);
}
