/* simple script to set the top frame to the location of the current frame */
/* this is not fool proof - early versions of mozilla won't set top.location.href (security) */
/* it doesn't work on safari */
/* a better solution should be found */

if (top != self) top.location.href = self.location.href;
