/* ---------------------------------------------------------
	javascript.js
	共通JAVAScript
--------------------------------------------------------- */

// ポップアップオープン ------------------------------------
// 引  数 : url    [string] URL
//          name   [string] 名前
//          width  [int]    幅
//          height [int]    高さ
function open_popup(url, name, width, height)
{
	style = "width=" + width + ",height=" + height + ","
		  + "directories=no,menubar=no,resizable=yes,toolbar=no,scrollbars=yes";

	window.open(url, name, style);
}

