function tabsShowContainer(name, containerId, max)
{
	for(var i=0; i<max; i++) {
		var container = document.getElementById(name+"-"+i);
		container.style.display = "none";
	}
	
	document.getElementById(name+"-"+containerId).style.display = "block";
}
