
// Anti-iframe
if (top != self) top.location.href = self.location.href;

/**
 * Open new window with given address
 * @param addr address
 * @return if window was opened
 */
function popup(addr)
{
    return window.open(addr);
}

