//=======================================================================
//
//
//
//
//
//=======================================================================
function CALIB_Treeview()
{
	
	if (document.layers) 				N4 = 1;
	else if (document.all) 				IE = 1;
	else if (document.getElementById) 	GK = 1;
	
	CALIB_Treeview.TabSpace='&nbsp;&nbsp;&nbsp;';		//ツリーのインデント
	CALIB_Treeview.items = new Object();				//ツリーのデータ 
	
	return this;
}

CALIB_Treeview.prototype.init = function()
{
	alert('abc');
}


/********************************************************/
//ウィンドウオープン
/********************************************************/
CALIB_Treeview.prototype.openwnd = function(div_name)
{
	objDiv = div_get_object(div_name);	
	objDiv.style.display = "block";
}

/********************************************************/
//アイテムをツリーに追加
/********************************************************/
CALIB_Treeview.prototype.additem = function(objParent,name,id)
{
	
}

/********************************************************/
//アイテムセット
/********************************************************/
CALIB_Treeview.prototype.set_item = function(arydat)
{

}



CALIB_Treeview.prototype.mouseover = function(obj)
{
	obj.className='on';
}
CALIB_Treeview.prototype.mouseout = function(obj)
{
	obj.className='off';
}

/********************************************************/
//項目の選択
/********************************************************/

/********************************************************/
//選択中のインデックスを返す。
/********************************************************/

/********************************************************/
//左クリック、右クリック判定
/********************************************************/

/********************************************************/
//右クリックメニュー
/********************************************************/


/********************************************************/
//ソート機能
/********************************************************/

/********************************************************/
//フォルダ作成
/********************************************************/

/********************************************************/
//ファイル作成
/********************************************************/

/********************************************************/
//ファイル別アイコン
/********************************************************/

/********************************************************/
//
/********************************************************/

