var fDesc=new Array();
fDesc[0] = "Chroma Clock is an full customizable App to show the current time on your chroma devices. Features like a timer and more are planned. Update function included. The User is able to customize different Color-Profiles.
The supported products are : all BlackWidow Chromas, all chroma mice, Kraken 7.1 Chroma and the Firefly mousepad.";
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 = '';
}
}