setTimeout ("FrameKiller()", 500); <!-- 500 - 0.5 сек - частота проверки-->
function FrameKiller() { 
	if (self.parent.frames.length != 0)
		if (self.parent.location != document.location) {
			self.parent.location = document.location;
		}
}
