//ウインドウを開く

var nw="";
function disp(url){
    if( sbwin_closed(nw) ) {
        nw = window.open(url, 'presite',"width=900,height=500, scrollbars=no");
    } 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
}
