function onloadShowTabs()
{
	ShowTabs('slctA','slctB','slctC','IDC_TAB_A','IDC_TAB_B','IDC_TAB_C');
}
function ShowTabs(slected,notselected1,noteselected2,selectedtext,notselectedtext1,notselectedtext2)
{
	if(slected == 'slctA')
	{
		statusTabA = 1;
		statusTabB = 0;
		statusTabC = 0;
	}
	if(slected == 'slctB')
	{
		statusTabA = 0;
		statusTabB = 1;
		statusTabC = 0;
	}
	if(slected == 'slctC')
	{
		statusTabA = 0;
		statusTabB = 0;
		statusTabC = 1;
	}
		
	var slcted = document.getElementById(slected);
	if(slcted != null)
{
	slcted.style.backgroundColor = '#587992';
	slcted.style.fontSize = '13px';
	slcted.style.fontFamily = 'Arial';
	slcted.style.color = '#ffffff';
	slcted.style.fontWeight = '700';
	slcted.style.textAlign = 'center';
}
	var notSlcted = document.getElementById(notselected1);
	if(notSlcted != null)
	{
	notSlcted.style.backgroundColor = '#ffffff';
	notSlcted.style.color = '#000000';
	notSlcted.style.fontWeight = 'normal';
	}
	notSlcted = document.getElementById(noteselected2);
	if(notSlcted != null)
	{
	notSlcted.style.backgroundColor = '#ffffff';
	notSlcted.style.color = '#000000';
	notSlcted.style.fontWeight = 'normal';
	}	
	var divBlock = document.getElementById(notselectedtext1);
	if(divBlock != null)
	{
	divBlock.style.display = 'none';
	divBlock = document.getElementById(notselectedtext1 + '1');
	divBlock.style.display = 'none';		
	divBlock = document.getElementById(notselectedtext2);
	divBlock.style.display = 'none';
	divBlock = document.getElementById(notselectedtext2 + '1');
	divBlock.style.display = 'none';	
	divBlock = document.getElementById(selectedtext);
	divBlock.style.display = 'block';	
	divBlock = document.getElementById(selectedtext + '1');
	divBlock.style.display = 'block';
	}
}