function choose() {
text = "FPcivic.org: "
text += document.title
text += "\n\nThis page is intended for display in a frame."
text += "\nTo restore the frame and the Home page of this section, click OK and, if necessary, navigate back to this page."
text += "\nTo display this page alone without the frame, click CANCEL."
bResult = confirm(text)
    if (bResult) {
	return (self.location.href = "index.htm")
	}
}

if (top == self)
{
	choose();
}
