The Not Forgotten (MN veterans served in conflict)
Charity Number: 1150541
Contact: Brigadier James Stopford
Address: 1st Floor, 14 Buckingham Palace Road , London
Postcode: SW1W 0QP
Phone: 0207 7302400
Website: www.thenotforgotten.org
Email: info@thenotforgotten.org
Summary: We organise a diverse programme of outings, events, and concerts. For those who are largely housebound, we provide televisions and/or TV licences. Our support can bring genuine happiness, a much needed boost and something to look forward to, enhancing the quality of life for serving and ex-service men and women of all ages.
Note/Restrictions: Serving or ex-service Royal Navy, Merchant Navy and Royal Naval Reserve personnel who are wounded, injured or sick.
Related Articles
Blind Veterans UK (MN veterans served in conflict)
Charity Number: 216227 Address: 3 Queen Street , London Postcode: WC1N 3AR Phone: 0300 111 22 33 Website: www.blindveterans.org.uk Email: information@blindveterans.org.uk Summary: Blind Veterans UK helps ex-Service men and women of every generation ...
Sight Scotland Veterans
Charity Number: SC047192 Address: 50 Gillespie Crescent, Edinburgh Postcode: EH10 4JB Phone: 0800 035 6409 Website: www.sightscotland.org.uk/veterans Email: Contact form on their website Summary: The charity provides support to empower ex-service men ...
BLESMA (MN served in conflict)
Charity Number: 1084189 Contact: Blesma Chelmsford Address: 115 New London Road, Chelmsford, Postcode: CM2 0QT Phone: 0208 590 1124 Website: www.blesma.org Email: info@blesma.org Summary: Blesma, The Limbless Veterans is one of only around ten ...
MN Veterans & Armed Forces Covenant
UK MERCHANT SEAFARING VETERANS AGREED DEFINITION Introduction The Merchant Navy and UK fishing fleets have always been called upon to provide support to both the UK Armed Forces and the Nation during wartime, other hostilities and military ...
Stoll Housing
Charity Number: 207939 Contact: Secretary's Office Address: 446 Fulham Road London Postcode: SW6 1DT Phone: 0207 385 2110 Fax: 0207 381 7484 Website: www.stoll.org.uk Email: info@stoll.org.uk Summary: Stoll is a unique community providing support to ...
(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);
})();