
function switchDisplay(domId)
{
	return switchCssDisplay(domId);
}

function readMoreLink_OnClick(buttonId, containerId)
{
	document.getElementById(buttonId).style.display = 'none';
	document.getElementById(containerId).style.display = '';
	
	return false;
}
