<!-- //
function Is() {
	var agent = navigator.userAgent.toLowerCase();
	this.ie   = (agent.indexOf("msie") != -1);
	this.divie = (document.all&&document.getElementById);
  this.IE = (this.ie && this.divie);
  }
var is = new Is();

// herladen
reLoad = function() {
    if (this.IE) {
        location.reload(true);
    }
   }
//if (window.attachEvent) window.attachEvent("onresize", reLoad);

window.onresize = function(){reLoad();}

// -->