var mpCurrentScriptmpFrmf51d265383c24ae0a0093f3668055989Container = document.currentScript.parentNode; (function () { var containerDiv = document.createElement('div'); containerDiv.id = "mpFrmf51d265383c24ae0a0093f3668055989"; containerDiv.classList.add("mpForm"); containerDiv.setAttribute("data-mpid", "39867"); if (window.self !== window.top) { if (document.currentScript?.parentNode?.nodeName?.toLowerCase() === 'head') { if (document.body) { document.body.appendChild(containerDiv); } else { document.addEventListener('DOMContentLoaded', () => { document.body.appendChild(containerDiv); }); } } else { document.currentScript.parentNode.insertBefore(containerDiv, document.currentScript); } mpFormmpFrmf51d265383c24ae0a0093f3668055989Find(); } else if(document.currentScript && document.currentScript.parentNode && document.currentScript.parentNode.nodeName && document.currentScript.parentNode.nodeName.toLowerCase() === "head") { document.addEventListener("DOMContentLoaded", (event) => { var bodyHolder = document.getElementsByTagName("body"); if (bodyHolder && bodyHolder[0]) { bodyHolder[0].appendChild(containerDiv); } }) } else { document.currentScript.parentNode.insertBefore(containerDiv, document.currentScript); mpFormmpFrmf51d265383c24ae0a0093f3668055989Find(); } })(); function mpFormmpFrmf51d265383c24ae0a0093f3668055989Find() { if(!mpCurrentScriptmpFrmf51d265383c24ae0a0093f3668055989Container) return; if (mpCurrentScriptmpFrmf51d265383c24ae0a0093f3668055989Container && mpCurrentScriptmpFrmf51d265383c24ae0a0093f3668055989Container.nodeName && mpCurrentScriptmpFrmf51d265383c24ae0a0093f3668055989Container.nodeName.toLowerCase() === "head") { var mpFind = document.querySelectorAll("[data-mpid='39867']"); if (mpFind.length && !mpFind[0].innerHTML) { mpFind[0].id = "mpFrmf51d265383c24ae0a0093f3668055989" } } else { var mpFound = false; Array.from(mpCurrentScriptmpFrmf51d265383c24ae0a0093f3668055989Container.children).forEach(c => { if (c.id === "mpFrmf51d265383c24ae0a0093f3668055989") mpFound = true; }) if (!mpFound) { var mpOthers = Array.from(mpCurrentScriptmpFrmf51d265383c24ae0a0093f3668055989Container.children).filter(e => e.dataset && e.dataset.mpid === "39867"); if (mpOthers.length === 1) { mpOthers[0].id = "mpFrmf51d265383c24ae0a0093f3668055989"; } } } } function mpForm18db42f16153451eb0be25ebe89e9a33Check() { let checkBoxes = document.getElementById("mpform-18db42f16153451eb0be25ebe89e9a33").querySelectorAll('input[type="checkbox"]'); if(checkBoxes) { for(var i = 0; i < checkBoxes.length; i++) { let checkBox = checkBoxes[i]; var attr = checkBox.getAttribute('data-prevval'); if (typeof attr !== typeof undefined && attr !== false) { checkBox.value = checkBox.getAttribute("data-prevval"); checkBox.removeAttribute("data-prevval"); checkBox.removeAttribute("checked"); } } } } function mpForm18db42f16153451eb0be25ebe89e9a33Submit(event) { event.preventDefault(); let msgHlder = document.getElementById("mpform-18db42f16153451eb0be25ebe89e9a33").querySelector('[id=mpmessageholder]'); let mpMsg = document.getElementById("mpform-18db42f16153451eb0be25ebe89e9a33").querySelector('[id=mpmessage]'); let checkBoxes = document.getElementById("mpform-18db42f16153451eb0be25ebe89e9a33").querySelectorAll('input[type="checkbox"]'); if(checkBoxes) { for(var i = 0; i < checkBoxes.length; i++) { let checkBox = checkBoxes[i]; if( checkBox.checked == true ) { if(checkBox.getAttribute('data-prevval')) { checkBox.value = checkBox.getAttribute('data-prevval'); } else { checkBox.value = 1; } } else { checkBox.setAttribute('data-prevval',checkBox.value); checkBox.value = 0; } } } let form_data = Array.from( new FormData(document.getElementById('mpform-18db42f16153451eb0be25ebe89e9a33')), function(e) { return { name: e[0], value: e[1] } } ) try { for(var i = 0; i < checkBoxes.length; i++) { let checkBox = checkBoxes[i]; let found = form_data.find(f=>f.name == checkBox.name) if(!found) { form_data.push({name: checkBox.name, value: checkBox.checked ? checkBox.value : "0"}) } } } catch(err){} try { form_data.push({ name: "mpTrkH", value: document.location.host }) form_data.push({ name: "mpTrkO", value: document.location.origin }) form_data.push({ name: "mpTrkP", value: document.location.pathname }) form_data.push({ name: "mpTrkQ", value: document.location.search }) form_data.push({ name: "mpTrkUUID", value: getTrackingId18db42f16153451eb0be25ebe89e9a33() }) } catch(err){} //check valid telnos var failed = ""; if(msgHlder) { msgHlder.style.display = "none"; } let telInputs = document.getElementById("mpform-18db42f16153451eb0be25ebe89e9a33").querySelectorAll('input[type=TELNO]'); if(telInputs) { for(var i = 0; i < telInputs.length; i++) { let telInput = telInputs[i]; var iti = window.intlTelInputGlobals.getInstance(telInput); telInput.classList.remove("mpm-field-error"); if(iti.isValidNumber() == false && telInput.value && telInput.value.length) { telInput.classList.add("mpm-field-error"); failed = "Please enter a valid telephone number"; } else { let found = form_data.find(f=> f.name == telInput.name); if (found) { found.value = iti.getNumber(); // intenationally formatted version of the number } } } } if(failed != "") { mpMsg.innerHTML = failed; msgHlder.style.display = "block"; return; } let button = document.getElementById("mpform-18db42f16153451eb0be25ebe89e9a33").querySelector('button'); if(button) { button.disabled = true; button.opacity = "0.5"; } mpMsg.innerHTML = 'Sending your details...'; var xhr = new XMLHttpRequest(); xhr.open("POST", "https://api.transpond.io/form?am=38559&fid=39867", true); xhr.onreadystatechange = function () { if (xhr.readyState === 4 && xhr.status === 200) { mpForm18db42f16153451eb0be25ebe89e9a33Check(); button.disabled = false; button.style.opacity = "1"; mpMsg.innerHTML = ""; msgHlder.style.display = "block"; let response = JSON.parse(xhr.responseText); if (!response || (!response.download && !response.downloads)) { try { document.getElementById('mpform-18db42f16153451eb0be25ebe89e9a33').reset(); } catch(e) {} } if(response) { if (response.redirect) { window.location.href = response.redirect; } else if (response.message) { if (response.download) window.open(response.download, '_blank'); if (response.downloads && response.downloads.length) { const parent = button.parentElement; response.downloads.forEach(link => { const hiddenButton = document.getElementById("mpform-18db42f16153451eb0be25ebe89e9a33").querySelector("a[href='" + link.replace + "']"); if (hiddenButton) { hiddenButton.href = link.link; hiddenButton.closest('[data-type="FORMFILE"]').style.display = 'flex'; } }); parent.style.display = "none"; } if(response.hideForm){ let mpMsgParent = msgHlder.parentElement; if(mpMsgParent && msgHlder){ mpMsg.innerHTML = response.message; mpMsgParent.innerHTML = msgHlder.innerHTML; } } else { mpMsg.innerHTML = response.message; } } else if (response.replace) { document.getElementById('mpform-18db42f16153451eb0be25ebe89e9a33').innerHTML = response.form } } } else { mpForm18db42f16153451eb0be25ebe89e9a33Check(); button.disabled = false; button.style.opacity = "1"; mpMsg.innerHTML = ""; msgHlder.style.display = "block"; var error = "Error submitting form"; if (xhr.responseText) { const errorJson = JSON.parse(xhr.responseText); if(errorJson.error && typeof errorJson.error === 'string') { error = errorJson.error; } } mpMsg.innerHTML = error; } }; let urlEncodedDataPairs = []; form_data.forEach((m, i) => { let name = m.name; if (name === 'capsule_note') { name += '_' + i; } urlEncodedDataPairs.push(encodeURIComponent(name)+ "=" + encodeURIComponent(m.value)); }); const urlEncodedData = urlEncodedDataPairs.join('&').replace(/%20/g, '+'); xhr.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); xhr.send(urlEncodedData); return; } function getTrackingId18db42f16153451eb0be25ebe89e9a33() { try { let uuid = document.cookie.match('(^|;)\s*mpz\s*=\s*([^;]+)')?.pop() || ''; if(!uuid) { let found = document.cookie.split(';').find(c => c.indexOf('mpz=') > -1); if (found) uuid = found.split('=')[1]; } return uuid; } catch(e) { } }; function mpmFormInit18db42f16153451eb0be25ebe89e9a33 () { var subscriberData = undefined; var form = '
Select from the options below to help us tailor our communications to your interests.
Lifelong learning
Essential skills
Employment
Better work

Learning and Work Institute will use the information you provide on this form to keep you updated on our work. After clicking \'subscribe\', you will receive an email asking you to confirm you wish to receive emails from us. You can unsubscribe at any time by clicking the link in the footer of our emails. For information about our privacy practices, please see our privacy policy.

We use Capsule as our marketing platform. By subscribing, you acknowledge that your information will be transferred to Capsule for processing. Learn more about Capsule\'s privacy practices.

'; let failedCount = 0 function finishedLoading18db42f16153451eb0be25ebe89e9a33() { window.mpFormLoading = false; let container = document.getElementById('mpFrmf51d265383c24ae0a0093f3668055989'); if (!container) { mpFormmpFrmf51d265383c24ae0a0093f3668055989Find(); failedCount++; if(failedCount > 10) return console.log('Form failed too many times mpFrmf51d265383c24ae0a0093f3668055989'); return setTimeout(finishedLoading18db42f16153451eb0be25ebe89e9a33, 300) } container.innerHTML = form; let containerChildren = container.childNodes; let msgHlder = document.getElementById("mpform-18db42f16153451eb0be25ebe89e9a33").querySelector('[id=mpmessageholder]'); if(msgHlder) { msgHlder.style.display = "none" } let telInputs = document.getElementById("mpform-18db42f16153451eb0be25ebe89e9a33").querySelectorAll('input[type=TELNO]'); if(telInputs) { let telInputCSSOver = ""; for(var i = 0; i < telInputs.length; i++) { let telInp = telInputs[i]; telInp.style.width = "100%"; telInp.style.paddingLeft = "50px"; window.intlTelInput(telInp, { initialCountry: "us", utilsScript: "https://cdn1.ourmailsender.com/scripts/telinput/utils.js", customContainer: "mpm-tel-input-container-18db42f16153451eb0be25ebe89e9a33-" + i } ); let tmpMargin = ""; if(telInp.style.margin) { tmpMargin = telInp.style.margin; telInputCSSOver += ".mpm-tel-input-container-18db42f16153451eb0be25ebe89e9a33-" + i + " { margin: " + tmpMargin + " } " } } if(telInputCSSOver) { let style = document.createElement("style"); style.innerHTML = telInputCSSOver; document.getElementsByTagName("head")[0].appendChild(style); } } if(subscriberData) { let customFields = document.getElementById("mpform-18db42f16153451eb0be25ebe89e9a33").querySelectorAll('input[name*="customField-"]') if(customFields) { var processedRadioNames = {}; for(var i = 0; i < customFields.length; i++) { let customField = customFields[i]; var cfID = customField.name; if(cfID) { cfID = cfID.split("-")[1]; let newValue = ""; if(subscriberData.customFields[cfID]) newValue = subscriberData.customFields[cfID]; if (customField.type === 'radio') { if (!processedRadioNames[customField.name]) { processedRadioNames[customField.name] = true; if (newValue !== "") { var radioGroup = document.getElementById("mpform-18db42f16153451eb0be25ebe89e9a33").querySelectorAll('input[type="radio"][name="' + customField.name + '"]'); for (var j = 0; j < radioGroup.length; j++) { radioGroup[j].checked = radioGroup[j].getAttribute('value') == newValue; } } } } else if (customField.type === 'checkbox') { customField.checked = newValue === true || newValue === 'true' || newValue === '1' || newValue === 1; } else { customField.value = newValue; } } } } let customFieldsTextArea = document.getElementById("mpform-18db42f16153451eb0be25ebe89e9a33").querySelectorAll('textarea[name*="customField-"]') if(customFieldsTextArea) { for(var i = 0; i < customFieldsTextArea.length; i++) { let customField = customFieldsTextArea[i]; var cfID = customField.name; if(cfID) { cfID = cfID.split("-")[1]; let newValue = ""; if(subscriberData.customFields[cfID]) newValue = subscriberData.customFields[cfID]; customField.value = newValue; } } } let customFieldsSelect = document.getElementById("mpform-18db42f16153451eb0be25ebe89e9a33").querySelectorAll('select[name*="customField-"]') if(customFieldsSelect) { for(var i = 0; i < customFieldsSelect.length; i++) { let customField = customFieldsSelect[i]; var cfID = customField.name; if(cfID) { cfID = cfID.split("-")[1]; var newValue = subscriberData.customFields[cfID]; if (newValue === undefined || newValue === null || newValue === '') continue; if (customField.multiple && Array.isArray(newValue)) { for (var j = 0; j < customField.options.length; j++) { customField.options[j].selected = newValue.indexOf(customField.options[j].value) > -1; } } else { customField.value = newValue; } } } } let emailAddressFields = document.getElementById("mpform-18db42f16153451eb0be25ebe89e9a33").querySelectorAll('input[name$="emailAddress"]') if(emailAddressFields) { for(var i = 0; i < emailAddressFields.length; i++) { let emailAddressField = emailAddressFields[i]; emailAddressField.value = subscriberData.emailAddress; } } } } function mpmPopup18db42f16153451eb0be25ebe89e9a33() { let popups = document.getElementById("mpform-18db42f16153451eb0be25ebe89e9a33").getElementsByClassName("mpm-popup"); if(popups) { for(var i = 0; i < popups.length; i++) { let popup = popups[i]; popup.classList.toggle("show"); } } } function mploadTelInput18db42f16153451eb0be25ebe89e9a33() { if(!window.intlTelInput) { var script = document.createElement("SCRIPT"); script.src = 'https://cdn1.ourmailsender.com/scripts/telinput/intlTelInput.min.js'; script.type = 'text/javascript'; script.onload = function () { finishedLoading18db42f16153451eb0be25ebe89e9a33(); }; document.getElementsByTagName("head")[0].appendChild(script); } else { finishedLoading18db42f16153451eb0be25ebe89e9a33(); } } var link = document.createElement("link"); link.href = "https://api.transpond.io/public/css/form.css"; link.type = "text/css"; link.rel = "stylesheet"; document.getElementsByTagName("head")[0].appendChild(link); var mTelI = document.createElement("link"); mTelI.href = "https://cdn1.ourmailsender.com/scripts/telinput/intlTelInput.min.css"; mTelI.type = "text/css"; mTelI.rel = "stylesheet"; document.getElementsByTagName("head")[0].appendChild(mTelI); mploadTelInput18db42f16153451eb0be25ebe89e9a33(); } if(!window.mpFormLoading){ window.mpFormLoading = true; mpmFormInit18db42f16153451eb0be25ebe89e9a33(); } else { function waitForOtherFormsmpFrmf51d265383c24ae0a0093f3668055989() { if(window.mpFormLoading == false) { console.log("Form Loaded"); mpmFormInit18db42f16153451eb0be25ebe89e9a33(); } else { setTimeout(waitForOtherFormsmpFrmf51d265383c24ae0a0093f3668055989,300); } } waitForOtherFormsmpFrmf51d265383c24ae0a0093f3668055989(); }