if (top.location == self.location) {
	location.href = "index.aspx?content="+location.href;
} else {
	if (top.location.href.indexOf('content=')>=0 && top.IsFirstContentLoad() ) {
		location.href = top.location.href.substring( top.location.href.indexOf('content=')+8 );
		top.OnContentLoad();
	}
}
