// JavaScript Document
	function tab1(obj1,obj2) {
		obj1.style.display='';
		obj2.style.display='none';
	}
	function tab2(obj1,obj2) {
		obj1.style.display='none';
		obj2.style.display='';
	}