// ******** Zur bevorzugten Ansicht weiterleiten ******* function redirect(target) { if (document.cookie != null && document.cookie != '' && document.cookie != location.pathname) { location.href=target; } } // ******** Cookie zur Speicherung der Ansicht setzen ******** function setCookie(path) { var ablauf = new Date(); var delay = ablauf.getTime() + (90 * 24 * 60 * 60 * 1000); ablauf.setTime(delay); document.cookie = path + '; expires=' + ablauf.toGMTString() + '; path=/'; }