//<![CDATA[
//<!--
// Class SelectDiv
function SelectDiv(_idArray)
{
	//properties
	this._idArray = _idArray;
	this._functions = new Functions();
	
	//private methods
	
	//public methods
	this.init = SelectDiv_init;
	this.showAll = SelectDiv_showAll;
	this.hideAll = SelectDiv_hideAll;
	this.show = SelectDiv_show;
	this.showNoHide = SelectDiv_showNoHide;
	this.hide= SelectDiv_hide;
	
	this.init();
}

function SelectDiv_init()
{
	this.hideAll();
}

function SelectDiv_hideAll()
{
	for(var i=0;i<this._idArray.length;i++)
	{
		this.hide(this._idArray[i]);
	}
	return true;
}

function SelectDiv_showAll()
{
	for(var i=0;i<this._idArray.length;i++)
	{
		this.showNoHide(this._idArray[i]);
	}
	return true;
}

function SelectDiv_show(_id)
{
	var element = document.getElementById(_id);
	this.hideAll();
	element.style.display = '';
}

function SelectDiv_showNoHide(_id)
{
	var element = document.getElementById(_id);
	element.style.display = '';
}

function SelectDiv_hide(_id)
{
	var element = document.getElementById(_id);
	element.style.display = 'none';
}
//-->
//]]>