function OpenImg(src,alt,width,height) {

  image = window.open('','','left=50, top=50, toolbar=no, width='+width+', height='+height+', resizable=no, scrollbars=no, status=no');
  image.focus();
  image.document.write('<html><head><title>Gulliver ILS</title></head><body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" style="background-image: url(\'images/cz/engine/loading.jpg\'); background-repeat: no-repeat; background-position: center center; "><a href="javascript: window.close();"><img src="'+src+'" width="'+width+'" height="'+height+'" alt="'+alt+'" border="0"></a></body></html>');
  image.document.close();

}

function Validate(Form) {

  if (Form.jmeno.value==""){
    alert("Prosím vyplňte jméno.")
    Form.jmeno.focus();
    return false;
  }
  if (Form.email.value==""){
    alert("Prosím vyplňte e-mail.")
    Form.email.focus();
    return false;
  }
  if (Form.zprava.value==""){
    alert("Prosím vyplňte text zprávy.")
    Form.zprava.focus();
    return false;
  }
  if (Form.email.value.indexOf("@")==-1){
    alert("Zadaná e-mailová adresa nemá správný formát.")
    Form.email.focus();
    return false;
  }
  
  return true;
}
