function unselnewstab(tabid)
{
	var tabhandle = document.getElementById(tabid);
	tabhandle.style.borderTop='1px solid #444444';
	tabhandle.style.borderLeft='1px solid #444444';
	tabhandle.style.borderRight='1px solid #444444';
	tabhandle.style.borderBottom='1px solid #777777';
	tabhandle.style.background='url(images/frame/tabbk_inactive.png) repeat-x';
	tabhandle.style.color='#FFFFFF';
	tabhandle.style.backgroundColor='#AAAAAA';
	tabhandle.style.height = '32px';
	tabhandle.style.cursor = 'pointer';
	tabhandle.style.fontSize = '8pt';

}
function selnewstab(tabid)
{
	var tabhandle = document.getElementById(tabid);
	tabhandle.style.borderTop='1px solid #777777';
	tabhandle.style.borderLeft='1px solid #777777';
	tabhandle.style.borderRight='1px solid #777777';
	tabhandle.style.borderBottom='0px';
	tabhandle.style.background='';
	tabhandle.style.color='#000000';
	tabhandle.style.backgroundColor='';
	tabhandle.style.height = '40px';
	tabhandle.style.cursor = '';
	tabhandle.style.fontSize = '8pt';
}
function unselallnewstab()
{
	unselnewstab('newstab_all');
	unselnewstab('newstab_thaiam');
	unselnewstab('newstab_worldam');
	unselnewstab('newstab_junior');
	unselnewstab('newstab_nationalteam');
	unselnewstab('newstab_lady');
}

//height:20px;border-top:1px solid #777777;border-left:1px solid #777777;border-right:1px solid #777777;
//border-top:1px solid #444444;border-right:1px solid #444444;border-bottom:1px solid #777777;background:url('images/frame/tabbk_inactive.png') repeat-x;color:#FFFFFF;background-color:#AAAAAA;height:16px;
