/* Description:
	Ensures that current page (thisPage) is displayed 
	within its appropriate frame (topPage).
    Preconditions:
*/
thisPage = self.location;
topPage = top.location;

if (thisPage == topPage){
    contentSRC = escape(thisPage);
    frameURL = 'index' + season + '.xhtml?' + contentSRC;
    top.location.href = frameURL;
}

