var fDesc=new Array();
fDesc[0] = "With ksColorPick you can pick colors from any window. You can display any color under your mouse cursor or you can display a magnifying glass window, so you can see more details. This program displays colors in a variety of formats including: HTML, Delphi, C/C++, VB, and RGB. With this tool you can easily save any color format to the clipboard for easily pasting into your code.";
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 = '';
}
}