//$(document).ready(function() {
//      $("#zalozit_diskusi").click(function () {
//            $('#zalozit_box').show(500);      
//      });
//});
function check(id){
	if(document.getElementById(id).value.length < 3){
		alert('Hledaný text musí mít minimálně 3 znaky');
		return false;
	}
	return true;
}

function sema(mail1, mail2){
	if(window.confirm('Chcete napsat mail na adresu '+mail1+'@'+mail2+'?'))location.href="mailto:"+mail1+'@'+mail2;
}

function rea(nadpis, idp){
	document.getElementById('discussForm').style.display="block";
	document.getElementById('nazev').value='Re: '+nadpis;
	document.getElementById('reakce').value=idp;
	document.getElementById('textp').focus();
}

function dihi(co){
	if(document.getElementById(co).style.display=="block")
		document.getElementById(co).style.display="none";
	else
		document.getElementById(co).style.display="block";
}

function objpoc(id){ // input
	if((document.getElementById('poc'+id).value=="")||(Math.round(document.getElementById('poc'+id).value)==0)){
		document.getElementById('obj'+id).checked="";
		document.getElementById('poc'+id).value="";
	} else
		document.getElementById('obj'+id).checked="checked";
}

function objit(id,chb){ // checkbox
	if(chb.checked){
		if(document.getElementById('poc'+id).value=="")document.getElementById('poc'+id).value="1";
	}else{
		document.getElementById('poc'+id).value="";
	}
}

function selinp(id){
	document.getElementById(id).focus();
}

function zind(id,val){
	document.getElementById(id).style.zindex=val;
}

function swPanel(param){
	if(param==0){
		hide('fLgn');
		showb('fHld');
		document.getElementById('dHldBut').style.textDecoration='none';
		document.getElementById('dLgnBut').style.textDecoration='underline';
	} else {
		hide('fHld');
		showb('fLgn');
		document.getElementById('dLgnBut').style.textDecoration='none';
		document.getElementById('dHldBut').style.textDecoration='underline';
	}
	return false;
}

function nw(obj){
	return !window.open(obj.href);
}

function addHTML(id, html){
	if(document.getElementById(id).innerHTML=="")
		document.getElementById(id).innerHTML=html;
	else
		document.getElementById(id).innerHTML="";
}

function showDiscussForm(text){
	document.getElementById('discussForm').style.display="block";
	document.getElementById('discussTitle').innerHTML=text;
	return true;
}

function unblock(obj){
	if(obj.value.length>2)
		e('next').disabled='';
	else
		e('next').disabled='disabled';
}

function addSearchEngine() {
	if ((typeof window.sidebar == "object") && (typeof window.sidebar.addSearchEngine == "function")) {
		window.sidebar.addSearchEngine(
			"http://www.ceskykutil.cz/widget/ceskykutil.src",
			"http://www.ceskykutil.cz/widget/ceskykutil.png",
			"Český kutil.cz - internetový hobby magazín pro celou rodinu",
			"QeXpedia");
	} else
		alert("Váš prohlížeč nepodporuje tuto funkci. Zkuste Mozillu (Firefox).");
}

function mapa(kolik) {
	if(kolik < 8) {
		document.getElementById('ma').style.backgroundPosition = "0px -"+(kolik*160)+"px";
	} else {
		document.getElementById('ma').style.backgroundPosition = "-200px -"+((kolik-7)*160)+"px";
	}
}

