//ポップアップ画面
function popup(fileNM,width,height){

	//ポップアップ画面横の長さのデフォルト値の設定
	if(width==null){
		width=400;
	}

	//ポップアップ画面縦の長さのデフォルト値の設定
	if(height==null){
		height=500;
	}

	window.open(fileNM,'','directories=no,fullscreen=no,resizable=yes,scrollbars=yes,location=no,menuber=no,titleber=no,toolber=no,status=no,top=50,left=100,width=' + width + ',height=' + height);
}

