// Include in head of each document <script type="text/javascript" src="forceframe.js"></script>
if (self.location == top.location) {
	if (location.protocol == "http:") {
		location.href = "/index.html?page=" + escape(self.location);
	}
	if (location.protocol == "https:") {
		location.href = "http://www.fseee.org/index.html?page=" + escape(self.location);
	}
}

// netscape 4 resize css bug
if (document.layers) {
	var dxOld = innerWidth;
	var dyOld = innerHeight;
	var fFirstLoad = true;
}

function reloadPage() {
	if (innerWidth != dxOld || innerHeight != dyOld) { 
		//alert('refresh because of resizing');
		location.reload(); 
	}
}

if (document.layers) {
	onresize = reloadPage;
}