<!--

// 表示：スクロールバー・リサイズボックス

var PopURL,PopNAME,PopWidth,PopHeight;

function POPUP(PopURL,PopName,PopWidth,PopHeight){
	var PopDetail = "toolbar=yes,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width=" + PopWidth + ",height=" + PopHeight;
	PopWin = window.open(PopURL,PopName,PopDetail);
	PopWin.focus();
}
function POPUPISL(PopURL,PopName,PopWidth,PopHeight){
	var PopDetail = "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,scrollbars=yes,width=" + PopWidth + ",height=" + PopHeight;
	PopWin = window.open(PopURL,PopName,PopDetail);
	PopWin.focus();
}

function popup(gurl,gwidth,gheight,gtoolbar,gresizable,gmenubar,gscrollbars)
{
        var buf;
        buf ="toolbar=" + gtoolbar + ",menubar=" + gmenubar + ",scrollbars=" + gscrollbars + ",resizable=" + gresizable + ",width=" + gwidth + ",height=" + gheight;
        window.open(gurl, '', buf);
        return;
}
//-->

