﻿function openImg(src,alt,width,height) {

  image = window.open('','image','left=50, top=50, toolbar=no, width='+width+', height='+height+', resizable=no, scrollbars=no, status=no');
  image.focus();
  image.document.write('<html><head><title>ETANCO CZ</title></head><body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" align="center"><p style="text-align: center;"><a href="javascript: window.close();"><img src="'+src+'" width="'+width+'" height="'+height+'" alt="'+alt+'" border="0" /></a></p></body></html>');
  image.document.close();

}


function checkDemoForm() {

    ff = document.getElementById("demoForm");

    errorMessage = new String;
    errorMessage = '';

    if(ff.f_name.value == '') errorMessage += "jméno, společnost\n";
    if(ff.f_email.value == '') errorMessage += "e-mail\n";
    if(ff.f_phone.value == '') errorMessage += "telefon\n";

    if(errorMessage=='') return true;
     else {
         alert('Chybně vyplněné položky: \n\n'+errorMessage);
         return false;
     }

}

