/*start*/ /* SV Endast en av Nordisk E-handelscertifiering godkand Certifierad E-handel far visa upp markningen (logotypen) for Certifierad E-handel eller referenser till att de ar en Certifierade E-handel. Markningen (logotypen) maste laggas in med det skript som tillhandahalls vid godkannandet. http://www.ehandelscertifiering.se/villkor/#abuse NO Bare en nettbutikk som er sertifisert som Sertifisert E-handel av Nordisk E-handelssertifsiering kan vise merket (logoen) for Sertifisert E-handel eller henvise til at de er sertifisert som Sertifisert E-handel. Merkingen (logoen) ma legges inn med det skriptet som gis ved godkjenning. http://www.ehandelssertifisering.no/betingelser/#abuse DA Kun en af Nordisk E-handelscertificering godkendt Certificeret E-handel ma fremvise maerkningen (logoet) for Certificeret E-handel eller henvise til, at de er en Certificeret E-handel. Maerkningen (logoet) skal laegges ind i med det script, der blev modtaget ved godkendelsen. http://www.ehandelscertificering.dk/betingelser/#abuse */ //adjustments for legacy logo code v4 and v5 //in legacy v5 code we have an img tag image placeholder we want to delete var legacy5 = document.getElementById("celink1"); if(legacy5) { legacy5.id = "celink1000"; legacy5.innerHTML = "certifierad ehandel"; } //in legacy v4 code we have a div we want to replace with an a tag var legacy4 = document.getElementById("celogohere"); if(legacy4) { var newa4 = document.createElement("a"); newa4.id = "celink1000"; newa4.innerHTML = "certifierad ehandel"; legacy4.replaceWith(newa4); } var celink301 = document.getElementById("celink301"); celink301.oncontextmenu = function() { return false; } celink301.className = "tbsfix"; celink301.style.display = "inline-block"; celink301.style.width = "45px"; celink301.style.height = "45px"; celink301.innerHTML = '\ \ \ \ \ \ \ \ \ '; var ceContainer301 = document.createElement("div"); ceContainer301.id = "ceContainer301"; document.body.appendChild(ceContainer301); var ceToA301; var ceToB301; var ceTouchedbefore301 = false; var cePopup301 = document.getElementById('cePopup301'); var ceCenter301 = document.getElementById('ceCenter301'); function ceShow301() { if(cePopup301.style.display=='none') { cePopup301.style.display='inline'; //adjust size of text relative to size of popup, which is 70% of viewport of max 500px var ow = cePopup301.offsetWidth; if(ow >= 500) { cePopup301.style.fontSize = "12px"; } else if( ow >= 350) { cePopup301.style.fontSize = "10px"; } else { cePopup301.style.fontSize = "8px"; } ceCenter301.setAttribute("stroke", "#666766"); cePopup301.style.animation='ceAnimPopupIn 0.3s ease-out normal'; cePopup301.style.WebkitAnimation='ceAnimPopupIn 0.3s ease-out normal'; } } function ceKeepMouse301() { clearTimeout(ceToA301); } function ceKeepTouch301() { cePopup301.onmouseleave = function() { }; clearTimeout(ceToA301); clearTimeout(ceToB301); } function ceHide301() { if(cePopup301.style.display == 'inline') { ceToA301 = setTimeout(ceHideDo301, 1000); } } function ceHideDo301() { cePopup301.style.animation = 'ceAnimPopupOut 0.3s ease-in forwards'; cePopup301.style.WebkitAnimation = 'ceAnimPopupOut 0.3s ease-in forwards'; setTimeout(function() { cePopup301.style.display = 'none'; }, 300); ceCenter301.setAttribute("stroke", "#70BF45"); } function ceTouch301() { if(ceTouchedbefore301) { window.location.href = "https://www.ehandelscertifiering.se/kontrollera-certifikat/?url=www.homezan.se"; } else { ceTouchedbefore301 = true; ceShow301(); ceToB301 = setTimeout(ceHideDo301, 9500); } } //ceShow301(); /*end*/