function zn_form_empty(){
    if(document.forms["zn_new"].email.value=='vase@adresa.cz')document.forms["zn_new"].email.value='';
}
function isEmail2(who) {
	var email=/^[A-Za-z0-9][\w-.]+[A-Za-z0-9]@[A-Za-z0-9]([\w-.]+[A-Za-z0-9]\.)+([A-Za-z]){2,4}$/i;
    return(email.test(who));
}
function zn_submit() {
if(isEmail2(document.zn_new.email.value)&&(!(document.zn_new.email.value=='vase@adresa.cz'))){document.zn_new.submit();}else{	alert('Zadejte prosím e-mailovou adresu!');}
}
function hide_emaily() {
document.all.emaily.style.display='none';
document.all.hide.style.display='none';
document.all.show.style.display='';
}
function show_emaily() {
document.all.emaily.style.display='';
document.all.hide.style.display='';
document.all.show.style.display='none';
}