
function tabSwitch(tabId,otherTab) {
	
	var tab = document.getElementById(tabId);
	var other = document.getElementById(otherTab);
	var other2 = document.getElementById(other2Tab);
	var tabBox = document.getElementById(tabId+'Box');
	var otherBox = document.getElementById(otherTab+'Box');
	var other2Box = document.getElementById(other2Tab+'Box');
	tab.className = 'selected';
	other.className = ' ';
	tabBox.style.display = 'block';
	otherBox.style.display = 'none';
		other2Box.style.display = 'none';

	
}

function switchBkOn(obj) {
	obj.style.background = '#FBFDF4';
}
function switchBkOff(obj) {
	obj.style.background = '';
}