//-------------------------------------------------------------------------------------------------
//	Display CC Table
//	bool	bDisplay	: false hides | true display
//	return void
//-------------------------------------------------------------------------------------------------
function displayCCTable(bDisplay)
{
	// get element
	var tableCC = window.document.getElementById("tableCC");
	
	if(bDisplay == "1")
	{
		tableCC.style.cssText = "display: block;";
		return;
	}
		
	tableCC.style.cssText = "display: none;";		
	
}
