John William Slater Memorial Fund
Charity Number: 270706
Contact: the Marine Society, Education Department
Address: 202 Lambeth Rd, London
Postcode: SE1 7JW
Phone: 020 7654 7000
Website: www.marine-society.org/slater-scholarship
Email: webenquiriesMS@ms-sc.org
The JW Slater Fund offers substantial financial awards to help British ratings, electrotechnical officers and yacht crew study for a first certificate of competency. The money can be used towards the costs of any necessary full or part-time education and to provide some financial support during college phases for those off pay.
Named in honour of former MNAOA (a predecessor union to Nautilus International) general secretary John Slater, the awards are made to selected UK-resident applicants aged 20 or over. More than 1,400 Slater Fund awards have been made by the Union since the scheme was launched in 1977.
The Slater Fund is administered on behalf of Nautilus by the Marine Society, an educational charity for seafarers. Find out more – and get your application started – on the Marine Society's Slater Scholarships page.
Related Articles
Royal Merchant Navy Education Foundation
Charity Number: 1153323 Contact: RMNEF Address: 1a Charnham Lane, Hungerford, Berkshire Postcode: RG17 0EY Phone: 01488 567 890 Website: www.rmnef.org.uk Email: office@rmnef.org.uk Summary: The Foundation's objective is to afford charitable benefit ...
Merchant Navy Training Board
Website: www.mntb.org.uk Email: enquiry@mntb.org.uk The MNTB is the shipping industry’s central body for promoting and developing sector specific education, training and skills. It is a voluntary body and a part of the UK Chamber of Shipping, the ...
Health & Welfare Financial Grants
Provided by Seafarers Hospital Society (SHS) Telephone: 020 8858 3696 Email: admin@seahospital.org.uk Website: www.seahospital.org.uk Address: 29 King William Walk, Greenwich, London, SE10 9HJ, United Kingdom The Seafarers Hospital Society (SHS) is a ...
Merchant Navy Welfare Board (MNWB)
Contact details Website: https://www.mnwb.org/ Address: Merchant Navy Welfare Board 8 Cumberland Place Southampton Hampshire SO15 2BH Telephone: 023 8033 7799 Email: enquiries@mnwb.org.uk Contact page: https://www.mnwb.org/contact-us/ Seafarer ...
The Marine Society
Charity Number: 313013 Address: 202 Lambeth Road, London Postcode: SE1 7JW Phone: 0207 654 7029 Website: www.marine-society.org Email: education@ms-sc.org Summary: The Marine Society was the world's first seafarers’ charity. It provides a range of ...
(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);
})();