function makeMeTop() {
	var thisURL = document.location;
	var topURL = top.location;
	if (top.location != thisURL) {
		top.location = thisURL;
	}
}
		
makeMeTop();