function openPopTab(tabID, tabLinkID)
{
	var allContent = document.getElementsByTagName('div');
	var strUAgent = navigator.userAgent;
	for (var contentIndex = 0; contentIndex < allContent.length; contentIndex++)
	{
		if (allContent[contentIndex].className == 'popTabContent' || allContent[contentIndex].className == 'popTabContentRTL')
		{
			allContent[contentIndex].style.visibility = 'hidden';
			allContent[contentIndex].style.display = 'none';
		}
		if (allContent[contentIndex].className == 'popTabLabel')
		{
			allContent[contentIndex].style.background = 'url(/windows/templates/common/images/ie/tab_IE_off.gif)';
			allContent[contentIndex].style.padding = '9px 0 0 0';
		}
	}
	var content = document.getElementById(tabID);
	content.style.visibility = 'visible';
	content.style.display = 'block';
	
	var tabBtn = document.getElementById(tabLinkID);
	tabBtn.style.background = 'url(/windows/templates/common/images/ie/tab_IE_on.gif)';
	if (strUAgent.indexOf("Firefox") >= 0)
		tabBtn.style.padding = '8px 0 0 0';
	else if	(strUAgent.indexOf("Opera") != 0)
		tabBtn.style.padding = '6px 0 0 0';
		
	
	var tabBkg = document.getElementById('tabBkg');
	tabBkg.style.display = 'block';
	
	var tabBkg = document.getElementById('ieHero');
	tabBkg.style.display = 'none';
}