var Weite, Hoehe, rausIntv;

if (!window.Weite && window.innerWidth) {
  window.onresize = onResize;
  Weite = iWidth();
  Hoehe = iHeight();
}

function iHeight(){
  return (window.innerHeight) ? window.innerHeight : (document.body.clientHeight) ? document.body.clientHeight : document.documentElement.clientHeight;
}

function iWidth(){
  return (window.innerHeight) ? window.innerWidth : (document.body.clientWidth) ? document.body.clientWidth : document.documentElement.clientWidth;
}
