var fDesc=new Array();
fDesc[0] = "SGcommander is a free utility developed by SIGMA KOKI Co.,LTD.
With SGcommander you can select the controller or driver to be used for the machine you use,select resolution according to the resolution of a controller,Select communication mode according to the memory switch COMM/ACK of a controller and so much more.";
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 = '';
}
}