// prevent-frame-hijack.js
// This JS disallows hijacking into someone else's frame

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