var fDesc=new Array();
fDesc[0] = "G4 PanelBuilder makes user interface design quick, easy, and with stunning results.
Pick a design concept that suits your project requirements, build your navigation in an intuitive visual environment, label your pages and buttons, and in a matter of minutes, generate a TP4 file you can immediately install on the touch panel. If you need to make a change, you can open and edit the file in TPDesign4.";
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 = '';
}
}