BEWSA - British Ex-services Wheelchair Sports Association

Charity Number: 1071226
Contact: Mrs Marilyn Thomas, Honorary Treasurer/Team Manager
Address: 12 Tuke Close Falmouth Cornwall
Postcode: TR11 2HL
Phone: 01326 318780
Email: info@bewsa.org
Summary: To promote welfare and rehabilitation of disabled ex-Service men and women through the participation of sport, sports medicine and any other means deemed legal under charity law. BEWSA encourages its athletes to compete to the highest standard of competition.
Note/Restrictions: Minimum length of service is one day’s full service pay. Beneficiaries are British or from within the Commonwealth, within the UK, disabled ex-Service wheelchair users. No restrictions on age or gender. Will consider MN veterans.
Related Articles
Blind Veterans UK
Charity Number: 216227 Address: 3 Queen Square , 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 ...
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 ...
Gwennili Sailing Trust
Contact details Website: https://www.gwennili.org.uk Affiliations page: https://www.gwennili.org.uk/affiliations What this organisation does Gwennili Sailing Trust is a sailing charity that works with a range of charities and organisations supporting ...
The Gwennili Trust
Charity Number: 1049041 Address: Oakside, Stibb Green, Burbage, Wiltshire Postcode: SN8 3AU Phone: 01672 810 740 Website: www.gwennili.org.uk Email: jpthornton1@outlook.com Summary: The Gwennili Trust was founded in 1995 to provide yacht sailing ...
Stoll Foundation ( Merchant Navy & Fishers who served under Admiralty Charter)
Contact details Website: https://www.stoll.org.uk/ Main telephone: 020 7385 2110 Email: info@stoll.org.uk Housing applications email: applications@stoll.org.uk Address: Stoll Foundation 446 Fulham Road London SW6 1DT Contact page: ...
(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);
})();