/* Überwachung von Internet Explorer initialisieren */
var scrollBarWidth = getScrollBarWidth();
if (!window.Weite && document.body && document.body.offsetWidth) {
  window.onresize = neuAufbau;
  Weite = Fensterweite();
}

var ie = getInternetExplorerVersion();
if (ie > 0 && ie < 9) { Weite = (Weite - 975) / 2; }
else if (ie >= 9) { Weite = (scrollBarWidth - 975) / 2; }
else { Weite = (Weite - 975 - scrollBarWidth) / 2; }

document.write('<div style="position:fixed; top:0px; left:' + Weite + 'px">');

