//**********************************************************************
// ポップアップ
//**********************************************************************

var PopURL,PopWidth,PopHeight;

function POPUP(PopURL,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,"POPUP",PopDetail);
	PopWin.focus();
}
