// break out of any frames/iframes
// needed for any page that can be redirected to from within an iframe
// the obvious example is signIn.htm, which is where we redirect the user
// if they don't have a valid login session.
if (top.location != self.location) {
        top.location = self.location.href 
}

