//---------------------------------------------------------------------//
//ポップアップ用関数//
//---------------------------------------------------------------------//
var PROJECT_NAME = "mskj";

//
//----------------------------------------//
function openWindow( targetRef, popWidth, popHeight ){
	if( (arguments.length == 4) && (arguments[3] == 'scroll') ) {
		var refPopWin = window.open( targetRef, PROJECT_NAME + "_Pop" + popWidth + "x" + popHeight + "SB", "toolbar=0,location=0,directories=0,scrollbars=1,status=0,resizable=0,width=" + popWidth + ",height=" + popHeight +"");
	}
	else {
		var refPopWin = window.open( targetRef, PROJECT_NAME + "_Pop" + popWidth + "x" + popHeight + "", "toolbar=0,location=0,directories=0,scrollbars=0,status=0,resizable=0,width=" + popWidth + ",height=" + popHeight +"");
	}
	refPopWin.focus();
	return false;
}
//----------------------------------------//


//---------------------------------------------------------------------//
//---------------------------------------------------------------------//
//---------------------------------------------------------------------//