YOU WANT TO START DANCING?
Even complete beginners can start with us! We look forward to seeing you! Everything you are interested in can be found HERE.
window.setTimeout(function(){
// First check, if localStorage is supported.
if (window.localStorage) {
// Get the expiration date of the previous popup.
var nextPopup = localStorage.getItem( 'nextNewsletter' );
if (nextPopup > new Date()) {
return;
}
// Store the expiration date of the current popup in localStorage.
var expires = new Date();
expires = expires.setHours(expires.getHours() + 24);
localStorage.setItem( 'nextNewsletter', expires );
}
DiviArea.show('#upozorneni');
}, 1000);