var fDesc=new Array(); fDesc[0] = "Icetips Xplore lets you take control over how your Clarion browses work.
Icetips Xplore comes as classes and template. The Xplore browse template is applied to ABC browses and adds a wide range of functionality. This includes header click sorting, filtering, move columns left or right, hide and unhide columns and change column colors. The browse can be printed and also exported to comma separated files or html files. Many of the functions are added to the browse popup menu."; 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 = ''; } }