function CheckTopLocation() {
	var toploc = new String( top.document.location );
	if( toploc.search(/^http:\/\/.*maidens(\.se)?\/(index.php)?(\?.*)?$/i) == -1 ) {
		if( confirm( "Det ser ut som om du har kommit till en undersida till\nKennel Maidens hemsida. Vill du se hela hemsidan?" ) ) {
			newloc = toploc.match( /^http:\/\/.*maidens(\.se)?\//i )[0];
			newsrc = toploc.substr( newloc.length );
			document.location = newloc + "?src=" + escape( newsrc );
		}
	}
}		
