var browserName=navigator.appName;

if (browserName != "Microsoft Internet Explorer") {
	window.onresize=refresh;
}

function refresh() {
	setTimeout("doit()",1)
}

function doit(){
	if (window.location.reload)
		window.location.reload( true );
	else if (window.location.replace)
		window.location.replace(unescape(location.href))
	else
		window.location.href=unescape(location.href)
}