	function color(objSel, strColor){
		
		if (strColor == 'normal'){
			objSel.style.backgroundColor='transparent';
			objSel.style.filter='alpha(Opacity=100, Style=0)';			
		}
		else
		{
			objSel.style.backgroundColor=strColor;
			objSel.style.filter='alpha(Opacity=70, Style=1 , FinishOpacity=70)';
			objSel.style.cursor='hand';
		}
	}
	
	function color2(objSel, strColor, strtxtcolor){
		
		if (strColor == 'normal'){
			objSel.style.backgroundColor='transparent';
			objSel.style.filter='alpha(Opacity=100, Style=0)';			
			objSel.style.color=strtxtcolor;
		}
		else
		{
			objSel.style.backgroundColor=strColor;
			//objSel.style.filter='alpha(Opacity=70, Style=1 , FinishOpacity=70)';
			objSel.style.filter='alpha(Opacity=100, Style=0)';
			objSel.style.color=strtxtcolor;
			objSel.style.cursor='hand';
		}
	}

	function color3(objSel, strColor, strtxtcolor){
		
		if (strColor == 'normal'){
			objSel.style.backgroundColor='transparent';
			objSel.style.filter='alpha(Opacity=60, Style=0)';			
			objSel.style.color=strtxtcolor;
		}
		else
		{
			objSel.style.backgroundColor=strColor;
			objSel.style.filter='alpha(Opacity=100, Style=0)';
			objSel.style.color=strtxtcolor;
			objSel.style.cursor='hand';
		}
	}

	function activar(objSel, strColor){
		
		if (strColor == 'normal'){
			objSel.style.backgroundColor='#555555';
			objSel.style.filter='alpha(Opacity=50, Style=0)';
		}
		else
		{
			objSel.style.backgroundColor=strColor;
			objSel.style.filter='alpha(Opacity=100, Style=0)';
			objSel.style.cursor='hand';
		}
	}
