function kontrola()
{
    var text_email = self.document.forms.f.customer_mail.value;
    var text_zprava = self.document.forms.f.customer_message.value;
    var text_antirobot_code = self.document.forms.f.antirobot_code.value;
	var znaky=new RegExp("^[^.]+(\.[^.]+)*@([^.]+[.])+[a-z]{2,10}$"); 
    
     if (!znaky.test(text_email))
    {
    alert('Zkontrolujte prosím pole: E-mail');
	f.customer_mail.focus();
	return false;
	}
	else if (text_zprava == "")
    {
    alert('Není co odeslat.');
    f.customer_message.focus();
	return false;
	}
	else if (text_zprava.length<10 )
    {
    alert('Zpráva je příliš stručná.');
    f.customer_message.focus();
	return false;
	}
	else if (text_zprava.lenght>5000 )
    {
    alert('Zpráva je příliš dlouhá.');
    f.customer_message.focus();
	return false;
	}
	else if (text_antirobot_code == "" )
    {
    alert('Opište prosím text z obrázku.');
    return false;
	f.customer_antirobot_code.focus();
	}
}