function show_tab (tmp){ 
	id_li='li'+tmp;
	id_tab='tab'+tmp; 
	for(i=1;i<5;i++) { 
		if (i==tmp) {
			if (document.getElementById(id_li))	{ 
				document.getElementById(id_li).className='active';
			} 
			if (document.getElementById(id_tab))	{ 
				document.getElementById(id_tab).style.display='block';
			}
		}
		else {	
			id_li_tmp='li'+i;
			id_tab_tmp='tab'+i;
			if (document.getElementById(id_li_tmp))	{
				document.getElementById(id_li_tmp).className='';
			}
			if (document.getElementById(id_tab_tmp))	{ 
				document.getElementById(id_tab_tmp).style.display='none';
			}
		}
	}
}