function tabs(tab2Id,other2Tab) {
	
	var tab2 = document.getElementById(tab2Id);
	var other2 = document.getElementById(other2Tab);
	
	var tab2Box = document.getElementById(tab2Id+'Box');
	var other2Box = document.getElementById(other2Tab+'Box');
	
	tab2.className = 'selected';
	other2.className = ' ';
	tab2Box.style.display = 'block';
	other2Box.style.display = 'none';
	
}

