/*
if(document.layers)
{
  window.captureEvents(Event.RESIZE);
  window.onresize = handleResize;
}

function handleResize()
{
  location.reload();
  return false;
}
*/


if (document.layers)
{
	var startbreite = window.innerWidth;
	var starthoehe = window.innerHeight;
	//alert("NS");
}

function resizeBug()
{
	if (document.layers && (window.innerWidth != startbreite || window.innerHeight != starthoehe))
	{
		//alert("lost: " + starthoehe);
		location.reload();	//oder: location.replace(location.href);
	}
}
    //Aufruf im BODY: <BODY OnResize="resizeBug()">

