
function popImage(sPicURL,sPicName) {
     	window.open("popup.htm?"+sPicURL+"?"+sPicName, "","resizable=1,HEIGHT=200,WIDTH=200,scrollbars=yes");
}

function popMeteo(sPicURL,sPicName) {
     	window.open("meteo.php?q="+sPicURL, "","resizable=0,HEIGHT=430,WIDTH=300,scrollbars=no");
}

function popRow(RowType,RowID,PopName) {
     	window.open("popRow.php?q="+RowType+"&id="+RowID+"&name="+PopName, "","resizable=1,HEIGHT=50,WIDTH=600,scrollbars=auto,toolbar=0,location=0,status=0");
}

function hidediv(id) {
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'none';
	}
	else {
		if (document.layers) { // Netscape 4
			document.id.display = 'none';
		}
		else { // IE 4
			document.all.id.style.display = 'none';
		}
	}
}

function showdiv(id) {
	if (document.getElementById) { // DOM3 = IE5, NS6
		document.getElementById(id).style.display = 'block';
	}
	else {
		if (document.layers) { // Netscape 4
			document.id.display = 'block';
		}
		else { // IE 4
			document.all.id.style.display = 'block';
		}
	}
}

function poslat() {
	var keyword = document.search.text.value;
	odeslat_server(keyword) ;
	return false;
}

function uprava_retezec_utf(text) {
	var retezec="";
	var char_in = ["+"," ","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""];
	var char_out = ["%2B","+","%C5%99","%C3%AD","%C5%A1","%C5%BE","%C5%A5","%C4%8D","%C3%BD","%C5%AF","%C5%88","%C3%BA","%C4%9B","%C4%8F","%C3%A1","%C3%A9","%C3%B3","%C5%98","%C3%8D","%C5%A0","%C5%BD","%C5%A4","%C4%8C","%C3%9D","%C5%AE","%C5%87","%C3%9A","%C4%9A","%C3%81","%C3%89","%C3%93"];
	for (var i=0; i<text.length;++i) {
		nenalezeno=1;
		for (var j=0; j<char_in.length;++j) {
			if(text.charAt(i)==char_in[j]) {
				retezec=retezec + char_out[j];
				nenalezeno=0;
			}
		}
		if (nenalezeno==1) {
			retezec = retezec + text.charAt(i);
		}
	}
	return retezec;
} 

function uprava_retezec(text) {
	var retezec="";
	var char_in = ["+"," ","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""];
	var char_out = ["%2B","+","%F8","%ED","%9A","%9E","%9D","%E8","%FD","%F9","%F2","%FA","%EC","%EF","%E1","%E9","%F3","D8","CD","%8A","%8E","%8D","%C8","%DD","%D9","%D2","%DA","%CC","%C1","%C9","%D3"];
	for (var i=0; i<text.length;++i) {
		nenalezeno=1;
		for (var j=0; j<char_in.length;++j) {
			if(text.charAt(i)==char_in[j]) {
				retezec=retezec + char_out[j];
				nenalezeno=0;
			}
		}
		if (nenalezeno==1) {
			retezec = retezec + text.charAt(i);
		}
	}
	return retezec;
} 

function odeslat_server(text) {
	var server = document.search.server
	if (server[0].checked == true ){var url ="http://www.damyko.info/ForumA/search.php?mode=results&search_fields=all&search_keywords="+ uprava_retezec(text)};
	if (server[1].checked == true ){var url ="http://www.damyko.info/ForumB/search.php?mode=results&search_fields=all&search_keywords="+ uprava_retezec(text)};
	if (server[2].checked == true ){var url ="http://www.damyko.info/ForumC/search.php?mode=results&search_fields=all&search_keywords="+ uprava_retezec(text)};
	if (server[5].checked == true ){var url ="http://www.nahouby.cz/diskuse.php?najdi=" + uprava_retezec(text)};
	if (server[4].checked == true ){var url ="http://www.nahuby.sk/vyhladavanie_globalne.php?domains=www.nahuby.sk&q="+ uprava_retezec_utf(text) +"&sa=Vyh%C4%BEad%C3%A1vanie+Google&sitesearch=www.nahuby.sk&client=pub-6117664599891361&forid=1&ie=UTF-8&oe=UTF-8&cof=GALT%3A%23888888%3BGL%3A1%3BDIV%3A%23cccccc%3BVLC%3A000000%3BAH%3Acenter%3BBGC%3AFFFFFF%3BLBGC%3A336699%3BALC%3A000077%3BLC%3A000077%3BT%3A000000%3BGFNT%3A000077%3BGIMP%3A000077%3BFORID%3A11&hl=sk"};
	if (server[6].checked == true ){var url ="http://www.google.com/search?q=" + uprava_retezec(text)};
	if (server[7].checked == true ){var url ="http://images.google.com/images?q=" + uprava_retezec(text)};
	if (server[3].checked == true ){var url ="http://www.biolib.cz/cz/formsearch/?action=execute&string=" + uprava_retezec(text) + "&searchtype=0&searchrecords=1&searchsynonyms=1&searchvnames=1&taxonid=0"};
	window.open(url, 'nove_okno')
} 
