function showHideLoginBox()
	{
		var andivDiv = document.getElementById('loginbox');
		if(!andivDiv.style.display || andivDiv.style.display=='none')
		{
			andivDiv.style.display='block';
			andivDiv.style.visibility = 'visible';
		} else
		{
			andivDiv.style.display='none';
			andivDiv.style.visibility = 'hidden';
			
		}	
	}
	
	function showTabArea(tabID)
	{
		var autoTab = document.getElementById('auto_login_tab');
		var lifeTab = document.getElementById('life_login_tab');
		var autoLifeNav = document.getElementById('auto_life_nav_tabs');
		var lifeAutoNav = document.getElementById('life_auto_nav_tabs');
		
		if (tabID == "life")
		{
			hideDiv(autoLifeNav);
			
			showDiv(lifeAutoNav);
			
			hideDiv(autoTab);
			
			showDiv(lifeTab);
			
		} else if (tabID == "auto")
		{
			hideDiv(lifeAutoNav);
			
			showDiv(autoLifeNav);
			
			hideDiv(lifeTab);
			
			showDiv(autoTab);
			
		}
	}
	
	function hideDiv(div)
	{
		if (div != null)
		{
			div.style.display='none';
			div.style.visibility = 'hidden';
		}
	}
	
	function showDiv(div)
	{
		if (div != null)
		{
			div.style.display='block';
			div.style.visibility = 'visible';
		}
	}