function CMenu(TRID, TDID)
{
	this.prototype = new CSuper('menu', TRID, TDID);
}

CMenu.prototype.HideElement = function(IdName, IdIndex)
{
	document.getElementById(IdName + '_' + IdIndex).style.display = 'none';
}

CMenu.prototype.ShowElement = function(IdName, IdIndex)
{
	document.getElementById(IdName + '_' + IdIndex).style.display = 'block';
}

CMenu.prototype.Select = function(Application, Resource, Bodyarea)
{
	Body.Exec(Application, Resource, Bodyarea);
}
