var fDesc=new Array();
fDesc[0] = "Compare, convert, and analyze colors from any RGB space and color catalogues, two colors at a time. Designed for Windows and Mac. Compatible with Windows 2000/XP/Vista/Windows 7, Mac OS X (PowerPC and Mac Intel). Although the interface is very similar on all platforms, the menus are laid out and labeled according to the user-guidelines for each platform. Includes many tutorials to learn how to use the program features and, at the same time, better understand color technology. Includes a complete help manual (350+ pages PDF) with basic color theory and detailed equations. In Windows, stand-alone "HTML Help" is also available. All help documents contain thousands of hyperlinks, for easy navigation, and a complete index. You can use and keep these manuals even if you do not buy the program!";
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 = '';
}
}