var fDesc=new Array();
fDesc[0] = "CORSAIR CUE software connects all your compatible products together in a single interface, giving you complete control of everything from RGB lighting and effects to fan speeds and temperature monitoring.
CORSAIR CUE software connects all your CORSAIR CUE compatible products together in a single interface, giving you complete control over your entire setup.
Synchronized lighting across all your CUE compatible devices brings your system to life, while powerful macro control accelerates your game. Combined with dynamic fan control and precise system, temperature and voltage monitoring, CUE offers intelligent control with unlimited possibilities.";
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 = '';
}
}