
 function checkEmail(){
    re = new RegExp("^[_a-zA-Z0-9\.\-]+@[_a-zA-Z0-9\.\-]+\.[a-zA-Z]{2,4}$");
    if (!re.test(document.getElementById("email").value)) {
      window.alert("Emailová adresa nemá správný formát");
      return false;
    } else {
    return true;
    }
}


function showImage(img,xwidth,yheight){

  var winl = (screen.width - xwidth) / 2;
  var wint = (screen.height - yheight) / 2;
  var a = window.open("","new","left="+winl+",top="+wint+",width="+xwidth+",height="+yheight);

  if (parseInt(navigator.appVersion) >= 4) { a.window.focus(); }

  a.document.writeln('<html>');
  a.document.writeln('<head><title>Velký náhled</title></head>');
  a.document.writeln('<body style="margin:0;padding:0;">');
  a.document.writeln('<a href="#" onclick="window.close();"><img src="'+img+'" border="0" width="'+xwidth+'" height="'+yheight+'" alt="klikni pro zavření okna"></a>');
  a.document.writeln('</body>');
  a.document.writeln('</html>');
  a.document.close();
}

function checkForum(){

if(document.forum.jmeno.value==""){
window.alert('Vyplňte jméno.');
document.forum.jmeno.focus();
  return false;
}

if(document.forum.nadpis.value==""){
window.alert('Vyplňte nadpis.');
document.forum.nadpis.focus();
  return false;
}

if(document.forum.zprava.value==""){
window.alert('Vyplňte zprávu.');
document.forum.zprava.focus();
  return false;
}
}

function checkRegistrace(){

  if((document.diskuze.jmeno.value=="")||(document.diskuze.prijmeni.value=="")){
    alert('Vyplňte jméno a příjmení.');
    document.diskuze.jmeno.focus();
    return false;
  }

  re = new RegExp("^[_a-zA-Z0-9\.\-]+@[_a-zA-Z0-9\.\-]+\.[a-zA-Z]{2,4}$");
  if (!re.test(document.getElementById("email_registrace").value)) {
    alert("Emailová adresa nemá správný formát");
    return false;
  } else {
  return true;
  }

}



