<!--
var nw="";
function loadTosubwin(url){
    if( sbwin_closed(nw) ) {
        nw = window.open(url, 'win',"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=380,height=510");
    } 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
}
//-->