I think popup you can close by
parent.close();
And to refresh main window i used this trick:
$(function(){
var win = null;
var check_connect;
var $connect = $("#some_button");
$connect.click(function() {
win = window.open("http://example.com/account/_oauth?redirect_url=" + redirect_url,'SomeAuthentication', 'width=972,height=660,modal=yes,alwaysRaised=yes');
});
check_connect = setInterval(function(){
if ( win != null ) {
if( win.closed ){
clear(check_connect);
window.location.reload();
}
}
}, 100);
function clear(it){ clearInterval(it); }
}
Opener ( main window ) just checks every time if the popup still live and if win.closed returns true - the main window reloads
Hope it will help somebody