Kontakt


Unsere Hotline ist zu folgenden Zeiten für Sie da:

Montag - Freitag 07.00 - 19.00 Uhr
Samstag 8.00 - 14.00 Uhr

+49 (0)7236 2478-490

Unter status.samenhaus.de können Sie bequem selbst Stornos und Teilstornos vornehmen.

Sie haben eine Frage oder ein Anliegen? Dann nehmen Sie mit uns Kontakt auf. Füllen Sie einfach das Formular aus und wir werden Ihre Anfrage schnellstmöglich bearbeiten.

var showPopupDelay = 3000; var showPopupLiveTime = 3; function showPopup() { setTimeout(function() { $('#popup').modal('show'); }, showPopupDelay); } function setPopupDisplayTime() { try { localStorage.setItem('popupLastShown', new Date().getTime().toString()); } catch (e) { console.error('Local storage is not available:', e); } } function shouldShowPopup() { try { const lastShown = localStorage.getItem('popupLastShown'); if (!lastShown) { return true; } const currentTime = new Date().getTime(); const timeDifference = currentTime - parseInt(lastShown, 10); const daysSinceLastShown = timeDifference / (1000 * 3600 * 24); const daysBeforeShowingAgain = showPopupLiveTime; return daysSinceLastShown >= daysBeforeShowingAgain; } catch (e) { console.error('Error checking popup display condition:', e); return true; } } function handlePopupDisplay() { if (shouldShowPopup()) { showPopup(); setPopupDisplayTime(); } } $(document).ready(function(){handlePopupDisplay();});