function link($objeto,$tipo,$accion){
	if($tipo.toLowerCase()=='link' || $tipo.toLowerCase()=='grid'){
		if($accion==0){
			$objeto.style.color='black';
			$objeto.style.textDecoration='None';
		}

		if($accion==1){
			$objeto.style.color='DB241E';
			$objeto.style.textDecoration='Underline';
		}
	}
}

