var nw="";
function loadTosubwin(url){
    if( sbwin_closed(nw) ) {
        nw = window.open(url, 'win',"width=670,height=660,scrollbars=yes");
    } else {
        nw.location.href=url;
    }
    nw.focus();
}

//子ウインドウ有無確認関数
function sbwin_closed(winVar) {
    var ua = navigator.userAgent;
    if( !winVar )
        if( ua.indexOf('MSIE 4')!=-1 && ua.indexOf('Win')!=-1 ) 
            return winVar.closed
        else return typeof winVar.document != 'object'
    else return true
}