/**
 * 自動生成されるメニューから開くポップアップ（ポップアップテンプレートが使われた画面が開く）
 * のサイズ固定
 */
function openPermLink(url, isPopup) {
	if (clicked) { return false; }
	
	if (isPopup) {
		nw_width = 560; // この数値を変更すれば、開くウィンドウの幅が変わります
		nw_height = 530; // この数値を変更すれば、開くウィンドウの高さが変わります

		nw_left = (screen.width  - nw_width) / 2;
		nw_top = (screen.height - nw_height) / 2;
		openWindow(url, 'subwin', nw_height, nw_width, 'yes', 'no', 'no', nw_left, nw_top);
	} else {
		location.href = url;
	}
	clicked = true;
	setTimeout('setFalseClicked()', 1000);
	return false;
}

/**
 * リンク作成で対象ウィンドウを”新しいウィンドウ（ブラウザメニューなし）”で作成したリンクから
 * 開くポップアップのサイズの固定
 */
function openPopup(url, width, height)
{
	if (null == width) {
		width = 550;
	}
	if (null == height) {
		height = 600;
	}
	subWindow = window.open(url, "_popup", "width=" + width + ",height=" + height + ",scrollbars=yes,resizable=no,toolbar=no,status=no");
	return void(0);
}
