Lest We Forget Association
https://www.lestweforgetassociation.org.uk/
Charity Number: 1162122
Address: 5B Longdown Road, Epsom, Surrey
Postcode: KT17 3PT
Phone: 01372 729530
Website: www.lestweforgetassociation.org.uk
Email: info@lestweforgetassociation.org.uk
Summary: The charity has two main missions: to provide entertainment and assist with the welfare of disabled men or women who have served, or are serving, in the Armed Forces or Merchant Navy, and their essential carers; and to encourage voluntary help and assistance for these people from the public in their local areas.
Note/Restrictions: Help is restricted to disabled serving or ex-Service / MN personnel in the South East of England and the Home Counties
Related Articles
Lest We Forget Association (LWFA)
Contact Details Website: https://www.lestweforgetassociation.org.uk Email: info@lwfa.org.uk (Coastal Breaks enquiries) Postal Address: The RV 55 Melvill Road Falmouth Cornwall TR11 4DF [ Contact Page: ...
Merchant Navy Association (MNA)
Charity Number: 1135661 Website: www.mna.org.uk Email: mna.events28A@gmail.com Summary: The Association aims to bring all serving and retired seafarers together in a spirit of companionship, consideration and commitment towards a united lobby for the ...
Royal Fleet Auxiliary Association - RFAA
Charity Number: 1093950 Address: 48 Mays Lane, Fareham, Hampshire Postcode: PO14 2EN Phone: 01329 512 506 (but initial contact preferred by email) Website: https://rfaa.uk/ Email: chairman@rfa-association.org Summary: To further the efficiency of the ...
Seafarers' Link (sponsored by the seafarers' charity)
Address: Age UK, Tavis House, 1-6 Tavistock Square, London . Postcode: WC1H 9NA Phone: 0800 434 6105 Website: https://friendship.ageuk.org.uk/member.html Seafarers Group Calls Age UK runs weekly telephone friendship groups for older people with a ...
Legion Scotland (MN veterans served in conflict)
Charity Number: SC003323 (Scotland) Contact: Switchboard Address: New Haig House, Logie Green Road, Edinburgh Postcode: EH7 4HQ Phone: 0131 550 1583 Website: www.legionscotland.org.uk Email: Contact enquiry form on website Summary: Legion Scotland ...
(function () {
'use strict';
// Only run on the KB root page
if (!/\/kb\/seafarer-support\/?$/.test(window.location.pathname)) return;
var CATEGORY_ID = '233149000000358041';
var MAX_WAIT_MS = 10000;
var POLL_INTERVAL_MS = 200;
var elapsed = 0;
function getStore() {
if (window.reduxStore) return window.reduxStore;
if (window._store) return window._store;
var all = document.querySelectorAll('*');
for (var i = 0; i < all.length; i++) {
var keys = Object.keys(all[i]);
for (var j = 0; j < keys.length; j++) {
if (keys[j].indexOf('__reactContainer') === 0) {
try { return all[i][keys[j]].child.memoizedProps.store; } catch (e) {}
}
}
}
return null;
}
function getPortalId() {
var resources = window.performance.getEntriesByType('resource');
for (var i = 0; i < resources.length; i++) {
var m = resources[i].name.match(/portalId=([^&]+)/);
if (m) return m[1];
}
return null;
}
var timer = setInterval(function () {
elapsed += POLL_INTERVAL_MS;
if (elapsed > MAX_WAIT_MS) { clearInterval(timer); return; }
var store = getStore();
if (!store) return;
var kb = store.getState().KBUIState;
if (!kb || !kb.subCategoryWithArticles || kb.subCategoryWithArticles.length === 0) return;
if (!kb.isNext) { clearInterval(timer); return; }
clearInterval(timer);
var portalId = getPortalId();
if (!portalId) return;
var base = window.location.origin + '/portal/api/kbCategory/' +
CATEGORY_ID + '/articles?portalId=' + portalId;
Promise.all([
fetch(base + '&from=1&limit=9').then(function (r) { return r.json(); }),
fetch(base + '&from=10&limit=9').then(function (r) { return r.json(); })
]).then(function (results) {
var sections = Object.values(results[0].data).concat(Object.values(results[1].data));
if (!sections.length) return;
store.dispatch({
type: 'KB_SUB_CATEGORIES_WITH_ARTICLES_BY_CATEGORY_SUCCESS',
data: { list: sections, categoryId: CATEGORY_ID, isNext: false, page: 1 }
});
}).catch(function () {});
}, POLL_INTERVAL_MS);
})();