function Fensterweite()
 {
  if (window.innerWidth)
  {
    return window.innerWidth;
  }
 else if (document.body && document.body.offsetWidth)
  {
    return document.body.offsetWidth+21;
  }
 else
  {
    return 0;
  }
}
