/** * This method will return whether shop is open or not. */ function ShopIsClosed() { var bReturn = false; var dDate = new Date(); var dToday = 4; var dHours = 2; if (dToday == 6) //6 is Saturday. { if (dHours >= 23) { bReturn = true; } }else if (dToday == 0) //0 is Sunday. { bReturn = true; }else if (dToday == 1) //1 is Monday. { if (dHours <= 4) { bReturn = true; } } return bReturn; }//ShopIsOpen /** * This method will check the today value. */ function initialize() { if (ShopIsClosed() == true) { var oBody = document.getElementById("oBody"); oBody.innerHTML = "







Momenteel is Lavendelkinderkleding gesloten. Wij zijn gesloten van zaterdagavond 23:00 t/m maandagmorgen 5:00.
"; } }//checkToday