function cpShowInterview(bShow)
{
	var oIarea   = document.getElementById('idInterview');
	if (oIarea == null) return false;

	if (bShow)
	{
		oIarea.style.display = 'block';
	}
	else
	{
		oIarea.style.display = 'none';
	};

	return false;
};

function ShowMenu(bShow, nNr, nTotal)
{
	for (i = 0; i < nTotal; i++)
	{
		oMenu = document.getElementById('iMenu' + i);
		if (oMenu != null)
			oMenu.style.display = (bShow && nNr == i ? 'block' : 'none');
	};
};
