<!--

// 表示：スクロールバー・リサイズボックス

var PopURL,PopNAME,PopWidth,PopHeight;

function POPUP(PopURL,PopName,PopWidth,PopHeight){
	var PopDetail = "toolbar=yes,location=yes,directories=yes,status=no,menubar=yes,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=yes,location=yes,directories=yes,status=yes,menubar=yes,resizable=yes,scrollbars=yes,width=" + PopWidth + ",height=" + PopHeight;
	PopWin = window.open(PopURL,PopName,PopDetail);
	PopWin.focus();
}


//-->