Maritime Foundation
Charity Number: 286784
Contact: The Secretary
Address: HQS Wellington, Temple Stairs, Victoria Embankment, London
Postcode: WC2R 2PN
Phone: 0300 365 8100
Website: www.maritimefoundation.uk
Email: secretary@maritimefoundation.uk
Summary: The Maritime Foundation promotes Britain's interests across all areas of the maritime sector. Its purpose is to raise public and parliamentary awareness of the importance of the UK's maritime industries, commerce and defence, through education, training and research.It sponsors Britain and the Sea Conferences and arranges maritime briefing seminars and three additional website links:
Britain and the Sea- www.britainandthesea.org
Lost at Sea Memorial Book-www.lostatsea.org.uk
www.maritimefilmsuk.tv
The Maritime Foundation arranges the annual Thanksgiving Service at All Hallows by the Tower where the Memorial Book is kept for those lost at sea with no known grave. Application for entries can be made through the website. The Maritime Foundation's trading arm, Maritime Films UK, provides a specialised up to date internet video and electronic media service to maritime charities for marketing purposes and fundraising activities.
Note/Restrictions: Also Known as the British Maritime Charitable Foundation.
Related Articles
The Maritime Foundation
The Maritime Foundation Contact details Website: https://www.maritimefoundation.uk/ General enquiries: secretary@maritimefoundation.uk Maritime Media Awards enquiries: awards@maritimefoundation.uk Sponsorship and support enquiries: ...
National Maritime Training Centre
Address: National Maritime Training Centre, North Kent College, Lower Higham Road, Gravesend, Kent Contact: Mrs Marianne Milligan - Short Course Administrator Phone: 01322 629600 Website: ...
Royal Merchant Navy Education Foundation (RMNEF)
Contact details Website: https://rmnef.org.uk/ Email: office@rmnef.org.uk Telephone: 01488 567890 Postal address: Royal Merchant Navy Education Foundation 1a Charnham Lane Hungerford RG17 0EY Facebook: https://facebook.com/RMNEF [ LinkedIn: ...
Lloyd's Register Foundation
Contact details: Website contact route: https://www.lrfoundation.org.uk/ About the Foundation: https://www.lrfoundation.org.uk/about-us News and updates: https://www.lrfoundation.org.uk/news Grant and programme information is available through the ...
Nautical Training Corps (NTC)
Website: https://www.ntc.org.uk/ Facebook: https://www.facebook.com/TheNauticalTrainingCorps/ Registered Charity: Charity information is displayed on the organisation's website. What this organisation does The Nautical Training Corps (NTC) is a ...
(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);
})();