// ------------------------------------------------------------------------------------------------------------ 120 -> |

/**
 * Frame buster which preserves back button functionality.
 *
 * See: http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed
 * See: http://stackoverflow.com/questions/752465/preventing-child-iframe-from-breaking-out-of-frame
 */

if ( top != self )
{
	top.location.replace( self.location.href );
}

// ------------------------------------------------------------------------------------------------------------ 120 -> |
