// The host page should never load outside a frameset
if (top.location == self.location && (self.location.pathname.indexOf("seriespel/serieResults") == -1)) {
	var site = "http://www.gbcbeach.com";
	var newLocation = site + "/default.asp?pathname=" + location.pathname;
	if (location.search.substring(1).length > 0){
		newLocation = newLocation + "&" + location.search.substring(1);
	}
	if (location.hash){
		newLocation = newLocation + "&pageanchor=" + location.hash.substring(1);
	}
	top.location = newLocation;
}

