// v1.0
// Frame Hijacking Detection.
// Detects if a frame was open on its own. If it's the case, index.html is reloaded.
// Copyright 2005-2008 Calypso Communication Inc.  All rights reserved.

if (top.location == self.location)	{
	top.location.href = "index.html"
}
