/*
var origWidth = innerWidth;
var origHeight = innerHeight;

function reDo() {
   if (innerWidth != origWidth || innerHeight != origHeight) 
      location.reload();
}

onresize = reDo;
*/

function init() {
	setTimeout("onresize = redo", 500);
}
	
function redo() {
	if (document.all) {
 		//window.alert("IE Window resized!");
		document.location.reload();
 	}
	else{
		//window.alert("FIREFOX Window resized!");
		window.location.href = window.location.href;
	}

}

//onload = init();
