function CheckFrame(){
	if(parent.frames[0]){
		if(parent.frames[0].name != "pretty"){
			top.location.href="index.html";
		}
	} else {
		top.location.href="index.html";
	}
}

CheckFrame();