var fDesc=new Array();
fDesc[0] = "Liquid Color visually calibrates your LCD computer display for your environment.
Main Features:
- Wizard for easy set-up
- 3 modes to accommodate most working environments
- Quickly select any mode from the task tray or context menu
- Universal calibration for all Windows® apps, no ICC profiles required
- Supports multiple monitors—up to four displays can have unique color settings
- Works with Windows XP, Windows Vista, and Windows 7";
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 = '';
}
}