
 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 / The email adress is invalid");
      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();
}


