function resetScroll(thisUrl) {
	if (top.document.location == self.document.location) {
		top.location = thisUrl;
	} else {
		parent.document.getElementById("contentFrame").style.height=1;
		parent.scrollTo(0,top);
	}
}
function resetHeight() {
	parent.document.getElementById("contentFrame").style.height=iFrameHeight;
}