//**************************************************************************************************
// FRAMEBUSTER - Prevent the site from being displayed in a frame.  This will repeat for every frame 
// that its in and eventually bust out of the containing frames completely
// NOTE: We're using this method instead of checking for self.parent.frames.length, because that 
// causes a problem with pages that have frames
//**************************************************************************************************

function FrameBuster() 
{
    if (top != self)
	{
		top.location.replace(self.location.href); 
	}
}

setTimeout ("FrameBuster()", 0);