/* 
******************************************************************************
  Filename    : common.js
  Language    : JavaScript
  
  Description : 共通
  ==============================================================================
  Change Log  :
  
  Date:         Ver:        Description:
  ------------------------------------------------------------------------------
  2005/10/27	1.00	    Hishikawa@LimeNet
  2006/02/17    1.01        Hishikawa@LimeNet
****************************************************************************** 
*/

//==============================================================================
//グローバル変数
//==============================================================================


//******************************************************************************
// <summary> ポップアップ画面をオープンする
// <param  > path       : オープンするページのパス
//           note       : 備考(常に新規ウィンドウを表示する場合は「_blank」)
//           width      : 幅
//           heigth     : 高さ
//           scrollbars : スクロールバー表示(true/false)
//           toolbar    : ツールバー表示(true/false)
//           location_  : ロケーション(true/false)
//           top        : ウィンドウの上位置
//           left       : ウィンドウの左位置
//           rthandle   : 開いたウインドウのハンドルを返すか(true/false)
// <returns> なし or 開いたウィンドウのハンドル
// <remarks> 
function open_window(path,note,width,height)
{
	//幅、高さを設定
	var wx = width;
	var wy = height;
	
	//オープン	
	var handle = window.open(path,note,"scrollbars=no,toolbar=no,location=no,directories=no,width=" + wx + ",height=" + wy);


	return;
}


//*****************************************************************************************************************
//▲カレンダー制御▲
//*****************************************************************************************************************
