function my_subm() {
	if (document.fs1.stext.value=="") {
		alert("Prosím zadejte, co chcete hledat.");
		document.fs1.stext.focus();
		return false;
	} else {
		return true;
	}
}
function podrob(i) {
	p = window.open("podrob.php?id="+i, "podrobnosti", "toolbar=0,location=0,scrollbars=1,resizable=0,width=600,height=500,left=30,top=30");
	p.focus();
}
function fotovelke(i) {
window.open("foto.php?id="+i,"",left=20,top=20,width=700,
   height=500,menubar=no,toolbar=no,location=no,status=no);
}
function Form_Validator_e(theForm)
{
  if (theForm.jmeno.value == "")
  {
    alert("Pokud se chcete zaregistrovat, musíte uvést jméno!");
    theForm.jmeno.focus();
    return (false);
  }

  if (theForm.email.value == "")
  {
    alert("Pokud se chcete zaregistrovat, musíte uvést email!");
    theForm.email.focus();
    return (false);
  }

  else if (window.RegExp)
  {
    re = new RegExp("^[^@]+@[^.]+\..+$");
    if (!re.test(theForm.email.value))
    {
    	alert("Prosím zadejte email ve správném tvaru. (např. email@email.cz)");
    	theForm.email.focus();
    	return (false);
    }
  }

  return (true);
}
function toplist() {
document.write ('<img src="http://toplist.cz/count.asp?id=97917&http='+escape(document.referrer)+'&wi='+escape(window.screen.width)+'&he='+escape(window.screen.height)+'&cd='+escape(window.screen.colorDepth)+'&t='+escape(document.title)+'" width="88" height="31" border=0 alt="TOPlist" />');
}