function kontrola_guestbook(form)
{
  if (form.jmeno.value=='')
  {
    alert('Vyplò "Jméno", pole je povinné.');
    form.jmeno.focus();
    return false;
  }
  else if (form.vzkaz.value=='')
  {
    alert('Vyplò "Vzkaz", pole je povinné.');
    form.vzkaz.focus();
    return false;
  }
  else
    return true;
}

function okno(stranka,w,h,tit) {
  leftpos=((screen.width-w)/1.8);
  toppos=((screen.height-h)/2.5);
	window.open(stranka,tit,'toolbar=no,location=no,directories=no,status=no,resizable=yes,copyhistory=no,width='+w+',height='+h+',left='+leftpos+',top='+toppos+',scrollbars=no');
return false;
}
