<!--
// Author : Mark Richardson 2006
// This piece of code stops the site from displaying in someone else's frame.

if(top.location != self.document.location)
{
  top.location = self.document.location;
}
//-->