function ChangeTabs(form, tab)
{
	document.getElementById('summary').className = (tab == 'summary' ? 'tabOn' : 'tabOff');
	document.getElementById('performance').className = (tab == 'performance' ? 'tabOn' : 'tabOff');
	document.getElementById('fundHoldings').className = (tab == 'fundHoldings' ? 'tabOn' : 'tabOff');
	
	
	document.getElementById('tabSummary').className = (tab == 'summary' ? 'selected' : '');
	document.getElementById('tabPerformance').className = (tab == 'performance' ? 'selected' : '');
	document.getElementById('tabFundHoldings').className = (tab == 'fundHoldings' ? 'selected' : '');
}

