// Check if we've been loaded outside our frameset
function checkFrames()
{
	var topLevelPage = "index.html"
	if (top.document == self.document)
	{
		// Send the location of this page to the frameset
		window.location = topLevelPage + "?" + window.location.pathname
	}
}