var fDesc=new Array();
fDesc[0] = "Color ComboBox ActiveX Control offers an easy method for a user to select a color from a combo box based on a predefined color-set or to define a custom color.
- Displays built-in default or user-definable color list
- Several predefined styles
- Optional edit button for custom colors
- Support for automatically changing color entry
- Built-in ChooseColor dialog access
- Find a color or a string with easy
- Easy to use even without one line code
- Special selected item color and 3D effect
- User-definable color bar width and height
- Fore color and back color of each items can be Individually modified";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}