	window.onload=verifFrame;
	
	function verifFrame()
	{
		if(document.frames.parent.name!='Parent' || document.frames.parent!=document.frames.parent.frames.parent)
			if(document.frames.parent.length>0)
				window.open(window.location.protocol+'//'+window.location.host,'_top')
			else
				window.open(window.location.protocol+'//'+window.location.host,'_self')
	}
