function mailinfokontrola() {
   function verifyemail_check(str) {
		if(!str.match(/^[\w]{1}[\w\.\-_]*@[\w]{1}[\w\-_\.]*\.[\w]{2,6}$/i)) {
			return false;
      } else {
         return true;
      }
   }


	if (document.getElementById('mailinfomail').value=="") {
		alert ('Musíte vyplnit Vaší e-mailovou adresu');
		return false;
	}

	if (document.getElementById('mailinfomail').value!="") {
		if (!verifyemail_check(document.getElementById('mailinfomail').value)) {
			alert("Zadaná e-mailová adresa nemá správný tvar.");
			return false;
		}
	}

	return true;
}



