function tabSwitch(tab1, tab2) { 
	
	tab1_element = document.getElementById(tab1);
	tab2_element = document.getElementById(tab2);
	
	if (tab1_element.style.display == 'inline') { 
		tab1_element.style.display = 'none';
		tab2_element.style.display = 'inline';
	} else { 
		tab1_element.style.display = 'inline';
		tab2_element.style.display = 'none';		
	}
}