function check(){
  jechyba= true;
  chyba = '';
  if (document.forms[0].jmeno.value == "")  {
    chyba+=" - Jméno\n";
    jechyba=false;
  }
  if (document.forms[0].kontakt.value == "")  {
    chyba+=" - Email\n";
    jechyba=false;
  }
  if (document.forms[0].telefon.value == "")  {
    chyba+=" - Telefon\n";
    jechyba=false;
  }

  if (!jechyba){
    eror(chyba)
  } else {
  	// JS ochrana proti spamu
		document.getElementById('timestamp').value = '1';
	}

  return jechyba;
}
function eror(chyby){
  alert("Vyplňte prosím:\n"+chyby+"Děkujeme!"); 
}

function historie(){
	hs=document.getElementById('historie').style; 
	hs.display=(hs.display == 'none')?'block':'none';
}
function historie_skryj(){
	document.getElementById('historie').style.display='none';
}

