﻿var isIE = /msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent);

function reflow(){
	if(isIE) {
		var b = document.body;
		b.style.zoom = b.style.zoom=="1"?"100%":"1";
	}
}

window.onresize = reflow;

