var fDesc=new Array(); fDesc[0] = "CuCANVAS is a graphic support program for users of CUBLOC Studio and GHLCD or CuTOUCH. You can use the easy-to-use tools to create your own graphics and let the program automatically generate the source code for you. By using CuCANVAS, you can automatically create the source code instead of coding it all from scratch.
Menu creation program for GHLCD and CUTOUCH. Use this program to create custom menus and automatically generate source code."; 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 = ''; } }