
function isBlank(val){
	if(val==null){return true;}
	for(var i=0;i<val.length;i++) {
		if ((val.charAt(i)!=' ')&&(val.charAt(i)!="\t")&&(val.charAt(i)!="\n")&&(val.charAt(i)!="\r")){return false;}
		}
	return true;
	}


function isDigit(num) 
  {
	 if (num.length>1){return false;}
	 var string="1234567890";
	 if (string.indexOf(num)!=-1){return true;}
	 return false;
	}

function isInteger(val){
	if (isBlank(val)){return false;}
	for(var i=0;i<val.length;i++){
		if(!isDigit(val.charAt(i))){return false;}
		}
	return true;
	}

  function checkEmail(email) 
  {
	   var objRegExp = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
  	 return objRegExp.test(email);
  }

function newsletterSend()
{
            var eml = document.getElementById('newsletterEml').value;
            if(!checkEmail(eml)) { eml = ""; }
            if(eml == "")
            {
              alert('Zkontrolujte prosím správnost e-mailu a akci opakujte.');
              return false;
            }
            return true;
}

function newsletterSubpageSend()
{
            var eml = document.getElementById('newsletterEml').value;
            if(!checkEmail(eml)) { eml = ""; }
            if(eml == "")
            {
              alert('Zkontrolujte prosím správnost e-mailu a akci opakujte.');
              return false;
            } else { alert
('Byl/a jste úspěšně přidán/a do našeho newsletteru !'); }
            return true;
}