/* This short script will safely escape frames. */
window.parent.onbeforeunload = null;
if(top != self) {
 top.onbeforeunload = function() {}; // predefine function to prevent overrides
 top.location.replace(self.location.href); // replace location with the URL of the framed site
}
