/*.......... Feudat Service Menu By: Mortazah Annaser(mortazah@gmail.com) ..........*/
function HidNavAst(tim)
{
	setTimeout('ShwRHid(\'none\',\'NavAst\')', tim);
}

function ShwSbjStl(act, obj)
{
	var sbjObj = document.getElementById(obj).style,
		fntSiz = parseInt(sbjObj.fontSize),
		bgClr = sbjObj.backgroundColor,
		navApp = navigator.appName,
		IEClr = new Array('#ffffff', '#ffffe5'),
		NcClr = new Array('rgb(255, 255, 255)', 'rgb(255, 255, 229)');
	
	switch(act)
	{
		case 'BigerFont':
		sbjObj.fontSize = fntSiz+3+'pt';
		break;
		
		case 'SmallerFont':
		sbjObj.fontSize = fntSiz-3+'pt';
		break;
	
		case 'HighLight':
			switch(navApp)
			{
				case 'Microsoft Internet Explorer':
				bgClr == IEClr[1] ? sbjObj.backgroundColor = IEClr[0] : 
				sbjObj.backgroundColor = IEClr[1];
				break;
				
				case 'Netscape':
				bgClr == NcClr[1] ? sbjObj.backgroundColor = NcClr[0] : 
				sbjObj.backgroundColor = NcClr[1];
				break;
			}
		break;
	}
	//E_big_switch
}
