if (document.layers) {
	origWidth = innerWidth;
	origHeight = innerHeight;
	}

function reloadPage() {
	if (innerWidth != origWidth || innerHeight != origHeight) 
	location.reload();
	}

if (document.layers) onresize = reloadPage;

myPage = self.location;
thisPage = top.location;
if (thisPage == myPage) {
	contentSRC = escape(myPage);
	frameURL = 'index.cfm?page=' + contentSRC;
	top.location.href = frameURL
	}
