function swapSimilarOwner(container1, container2, callerObj, toSwapObj) 
{
	if (Element.hasClassName(callerObj, 'actm_tab')) {
		return;
	}
	
	Element.removeClassName(toSwapObj, 'actm_tab');
	Element.addClassName(callerObj, 'actm_tab');
	$(container2).hide();
	$(container1).show();		
}

function showMoreInfo() 
{
	$('moreInfoContent').show();
	$('moreInfoHide').show();
	$('moreInfoShow').hide();	
}

function hideMoreInfo() 
{
	$('moreInfoContent').hide();
	$('moreInfoHide').hide();	
	$('moreInfoShow').show();
}

function toggleTabMenu(activeTab, inactiveTabList, activeElement, inactiveElementList) {
	if (Element.hasClassName(activeTab, 'actm_tab')) {
		return;
	}
	
	Element.addClassName(activeTab, 'actm_tab');
	inactiveTabList.each(function(s) {
		$(s).removeClassName('actm_tab');
	});
	
	$(activeElement).show();
	inactiveElementList.each(function(s){
		$(s).hide();
	});
}