﻿function newsletter(_baseurl,_branch) 
{var email = document.getElementById('txtNews').value;
        if (email != '' && checkEmail(email))
         {window.parent.location = _baseurl+ 'newsletter/default.aspx?auto=1&email=' + email + "&branchid="+_branch;}
        else { alert('דואר אלקטרוני לא חוקי'); }
} 
        
        
        function checkEmail(email) 
        { var regExprEmail = new RegExp('^\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*$');
         regExprEmail.exec(email);  return (regExprEmail.test(email));
         }
         
         
function AddFavorite() {
    if (window.sidebar) {
        window.sidebar.addPanel(document.title, location.href,"");
    } else if (window.external) {
        window.external.AddFavorite(location.href, document.title);
    }
}