console.log("yeryeryer"); function goToArkisto() { urlToGo = "https://kabinetti.kosila.fi/index.html#/archive/9b543e28-5e9b-11ea-b160-00155d64030a"; if (localStorage["ls.prod-edocker-subscriber-id"]) { urlToGo += "/9b543e28-5e9b-11ea-b160-00155d64030a"; } if (window.location.href.indexOf("46a58edc-5ea4-11ea-8c97-00155d64030a") > 1) { console.log("ASKEL"); urlToGo = "https://kabinetti.kosila.fi/#/archive/46a58edc-5ea4-11ea-8c97-00155d64030a"; } window.location.href = urlToGo; } function goToKotimaa() { urlToGo = "https://www.kotimaa.fi/"; window.location.href = urlToGo; } function catalogCustomJs() { console.log("CATALOG"); } let span = document.createElement('span'); span.onclick = function() { goToArkisto(); }; span.id = "arkisto-link"; span.textContent = "Arkisto "; document.getElementById("ed-nav-collapse").appendChild(span); let span2 = document.createElement('span'); span2.onclick = function() { goToKotimaa(); }; span2.id = "etusivu-link"; span2.textContent = " kotimaa.fi"; document.getElementById("ed-nav-collapse").appendChild(span2);