function tabswitch(t1, t2, t3, b1, b2, b3) {
	t1.style.display = "block";
	t2.style.display = "none"; 
	t3.style.display = "none"; 
	b1.className="button-select";
	b2.className="button"; 
	b3.className="button";
}
