// JavaScript Document

//画像用子ウィンドウ
function loadTosubwin(subHtml,subwidth,subheight){
	var subWin = window.open(subHtml,"subWin","width="+subwidth+",height="+subheight+",scrollbars=yes,location=no,menubar=no,resizable=yes,left=10,top=30");
	subWin.focus();
}


var nw="";
var subWin =0;		
function openImage(subHtml,subwidth,subheight){
   		subWin +=1;		
        nw = window.open(subHtml,subWin,"width="+subwidth+",height="+subheight+",scrollbars=yes,location=no,menubar=no,resizable=yes,left=10,top=30");
   
    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
}