function showTab(in_intId)
{
	for (i = 1; i <= 9; i++)
	{
		var objNodeTab = document.getElementById('tab' + i);
		if (objNodeTab != null)
		{
			if (i == in_intId)
			{
				document.getElementById('tab' + i).className = 'tab-details-active';
				document.getElementById('tabview' + i).style.display = 'block';
			}
			else
			{
				document.getElementById('tab' + i).className = 'tab-details-passive';
				document.getElementById('tabview' + i).style.display = 'none';
			}
		}
	}
	if(typeof(window.handleShowTab) == 'function')
	{
		window.handleShowTab(in_intId);
	}
	return false;
}
