function self_email_mlm_password(site_id, email)
{
    email = $.trim(email);
    
    if (email == '' || email == translate('email'))
    {
        my_alert('You should fill in your email address');
        return false;
    } 
    
    if ( ! is_valid_email_syntax(email))
    {
        my_alert('invalid email syntax');
        return false;
    }
    
    $('#button_email_mlm_pwd').hide();
    $('#saving_email_mlm_pwd').show();
    
    setTimeout("$('#button_email_mlm_pwd').show(); $('#saving_email_mlm_pwd').hide();", 5000);
    
    location.href = get_url_action('unid_email_mlm_pwd')+'&'+FLD_SITE_ID+'='+site_id+'&email='+email;
}

function send_form_mlm_pwd()
{
    var f = document.forms['form_mlm_pwd'];
    
    var email = f.email.value;
    var pwd_old = f.pwd.value;
    var pwd_new = f.pwd_new.value;
    
    if (email == '' || pwd_old == '' || pwd_new == '')
    {
        my_alert('all field are must');
        return false;
    }
    
    if ( ! is_valid_email_syntax(email))
    {
        my_alert('invalid email syntax');
        return false;
    }
    
    create_cookie('LOCALI_MLM_PWD', pwd_new, '1 years');

    $('#button_mlm_pwd').hide();
    $('#saving_mlm_pwd').show();

    f.submit();
    
    return false;
}
