var currentlyVisibleTab = 0;
var currentTab1 = 0;
function showContainer(container, ctid) 
{
	ct_number=ctid;
	alert(ct_number);
	ct = document.getElementById(container+currentlyVisibleTab);
	//alert(tr);
	if (ct)
	{
		ct.style.display= "none";
	}
	currentlyVisibleTab = ct_number;
	ct = document.getElementById(container+currentlyVisibleTab);
	if (ct) {
		ct.style.display= "";
	}
}

function show() 
{
	a = document.getElementById('Showid').style.display = '';
	
}
function hide() 
{
	a = document.getElementById('Showid').style.display = 'none';
	
}

