Afyonkarahisar nöbetçi eczaneler, nöbetçi eczaneleri, bugün açık olan nöbetçi eczaneler, Afyonkarahisar hangi eczane nöbetçi, bugün nöbetçi eczane hangisi

Afyonkarahisar Emirdağ 01 Mayıs 2026 Cuma nöbetçi eczane adres, telefon ve konumları

Üst
/* Scroll pozisyonunu kaydet ve sayfayı yenile */ function refreshWithScroll() { sessionStorage.setItem("scrollPosition", window.scrollY); location.reload(); } /* Yenileme sonrası scroll pozisyonunu geri yükle */ function restoreScroll() { const pos = sessionStorage.getItem("scrollPosition"); if (pos !== null) { window.scrollTo(0, Number(pos)); sessionStorage.removeItem("scrollPosition"); } } window.addEventListener("load", restoreScroll); setInterval(() => { // Sayfada YouTube veya video varsa YENİLEME YAPMA const hasVideo = document.querySelector("video") || document.querySelector('iframe[src*="youtube.com/embed"]') || document.querySelector('iframe[src*="youtube-nocookie.com/embed"]'); if (!hasVideo) { refreshWithScroll(); } }, REFRESH_INTERVAL); })();