

if (document.all) { 
layerRef=""
styleRef=".style"
leftRef=".pixelLeft"
topRef=".pixelTop"
heightRef=".scrollHeight"
widthRef=".scrollWidth"
DOMRef="document.all."
DOMRef2=""
}

if (document.layers) {
layerRef="document.layers."
styleRef=""
leftRef=".left"
topRef=".top"
heightRef=".height"
widthRef=".width"
DOMRef="document."
DOMRef2=".document"}

// Netscape Resize Fix

if (document.layers) {
	CurrentWidth = window.innerWidth
	CurrentHeight = window.innerHeight
 	window.onResize = resizeIt
        }

function resizeIt() {
	if (CurrentWidth != window.innerWidth || CurrentHeight != window.innerHeight)
	document.location.href = document.location.href
        }
