function init() { if (document.all && navigator.userAgent.toLowerCase().indexOf('opera') == -1) { document.all.bottominfo.style.visibility="visible"; setInterval("posBottom(1)",40); } else { setInterval("posBottom(0)",40); } if (document.getElementById) { window.onresize=posRegBox; window.onscroll=posRegBox; } posRegBox(); } function posBottom(isIE) { var x; var y; if (document.all) { y=document.body.offsetHeight; } else { y=window.innerHeight; } x=window.page.elmPos("navPosition").x-4; y-=40; if (document.layers) { document.layers["bottominfo"].left=x; document.layers["bottominfo"].top=y; document.layers["bottominfo"].visibility="show"; } else if (document.all && isIE) { var gescrollt=document.body.scrollTop; y+=gescrollt; document.all.bottominfo.style.left=x; document.all.bottominfo.style.top=y-4; // IE berechnet 4 Pixel zu viel bei offsetHeight } else if (document.getElementById) { document.getElementById("bottominfo").style.left=x-document.body.scrollLeft; document.getElementById("bottominfo").style.top=y; document.getElementById("bottominfo").style.visibility="visible"; document.getElementById("bottominfo").style.position="fixed"; } } function posRegBox() { if (!document.getElementById) return true; var w=document.body.clientWidth; var wR=document.getElementById("regBox").offsetWidth; if (w+document.body.scrollLeft < 918) { document.getElementById("regBox").style.position="absolute"; document.getElementById("regBox").style.top=0; document.getElementById("regBox").style.left=w-wR+document.body.scrollLeft; } else { document.getElementById("regBox").style.position="static"; } } function autologinWarning() { if (document.mainform.autologin.checked) { alert("Hinweis:\nWenn Sie diese Option aktivieren, kann der Organizer\nvon diesem PC ohne Passwortabfrage verwendet werden.\nWenn der PC von mehreren Personen verwendet wird,\nschalten Sie diese Option bitte aus."); } } function openWin(myUrl,w,h,x,y) { if (!x) x=0; if (!y) y=0; if (!w) w=650; if (!h) h=300; var popUp=window.open(myUrl,"popWindow","width="+w+",height="+h+",left="+x+",top="+y+",dependent=yes,scrollbars=yes,resizable=yes"); popUp.focus; }