
function kfrawy_bar(tableCellRef , navStyle) 
{


	switch ( navStyle )
	 {
			
	case 1:
		
	tableCellRef.style.backgroundColor = '#7AD0F9';
	tableCellRef.style.color = '#ff0000';
	break;


	case 2:
		
	tableCellRef.style.backgroundColor = '';

	tableCellRef.style.color = '#105170';	
	break;


	case 3:
		
	tableCellRef.style.backgroundColor = '#ff0000';

	tableCellRef.style.color = '#ffffff';	
	break;

		
	default:

	tableCellRef.style.backgroundColor = '#C3EBFE';
	}
}

