// Netscape and IE Resize Fix
if (is.ie) {
	widthCheckIE = document.body.offsetWidth
	heightCheckIE = document.body.offsetHeight
}
if (is.ns) {
	widthCheck = window.innerWidth
	heightCheck = window.innerHeight
	window.onResize = resizeFix
}
function resizeFix() {
	if (is.ns) {
		if (widthCheck != window.innerWidth || heightCheck != window.innerHeight)
		document.location.href = document.location.href
	} else {
		if (widthCheckIE != document.body.offsetWidth || heightCheckIE != document.body.offsetHeight)
		document.location.href = document.location.href
	}
}

<!--
if (is.ie) { winW = document.body.offsetWidth-20; winH = document.body.offsetHeight; }
if (is.ns) { winW = window.innerWidth-16; winH = window.innerHeight-16; }
if (winW < 780) { winW = 760+25; }
<!-- if (winH < 427) { winH = 427; } -->
if (winH < 227) { winH = 227; }
if (is.ie) { divH = winH/2-53; }
if (is.ns) { divH = winH/2-51; }
//-->
