	function Reserse(Vlastnik, Kniha, Id) {
		var ok = true;
		if(!Vlastnik) ok = confirm('Uložením tohoto hesla do rešerše bude zakoupeno.');
		if(ok) { document.WorkForm.Kniha.value = Kniha; document.WorkForm.Id.value = Id; document.WorkForm.submit(); }
	}

	function Stranka(Str, Kniha, Id, Kup, OborA, OborB, OborC) {
		if(typeof(OborA)=="undefined") OborA = 0;
		if(typeof(OborB)=="undefined") OborB = 0;
		if(typeof(OborC)=="undefined") OborC = 0;
		if((OborA+OborB+OborC)>0) {
			if(Kniha=='malacs') {
				document.srchform.OborMalaA.value = OborA;
				document.srchform.OborMalaB.value = OborB;
				document.srchform.OborMalaC.value = OborC;
				elem = document.srchform.elements; found = false;
				for(i=0;i<elem.length;i++) {
					if(elem[i].name=='KdeHledat')
						{ elem[i].value = found?'':'malacs'; found = true; }
				}
			} else if(Kniha=='universum') {
				document.srchform.OborUnivA.value = OborA;
				document.srchform.OborUnivB.value = OborB;
				document.srchform.OborUnivC.value = OborC;
				elem = document.srchform.elements; found = false;
				for(i=0;i<elem.length;i++) {
					if(elem[i].name=='KdeHledat')
						{ elem[i].value = found?'':'universum'; found = true; }
				}
			}
		}
		if(OborA>0) { document.srchform.Vyroci.value = ''; document.srchform.Vyraz.value = ''; }
		if(Str>0) document.srchform.Str.value = Str;
		if(Kniha!=null&&Id!=null&&new String(Kniha).length>0&&new String(Id).length>0) {
			document.srchform.Kniha.value = Kniha;
			if(OborA==0) document.srchform.Id.value = Id;
		}
		if(OborA==0&&Kup>0) document.srchform.Kup.value = 1;
		document.srchform.submit();
	}

	function ZobrazVysledky() {
		if(document.getElementById("vysledky").style.display=="none") {
			document.getElementById("vysledky").style.display = "inline";
			document.frames("hledaniNaWebu").adjust();
		} else
			document.getElementById("vysledky").style.display = "none";
		if(document.getElementById("dolni")) moveit();
	}
	
