var fDesc=new Array(); fDesc[0] = "XP-Taskpanel is a native control for Clarion. It emulates the taskpanes that are found in Microsoft's Windows XP. Taskpanels provide a flexible way of presenting a group of related tasks to your users. XP-Taskpanel provides you with a graphically rich, modern looking, visually appealing way of presenting logically grouped sets of choices.

The template is very powerfull, yet easy to use. You'll have a nice looking taskpanel in minutes, without the hassle of handcoding. If you want to take full control over XP-Taskpanel you can do that with the help of XP-Taskpanel's extensive class methods."; 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 = ''; } }