var fDesc=new Array(); fDesc[0] = "Keep all your information in one place and easily find anything you saved once. No more making up categories and struggling to fit the new info somewhere just to forget the place later. The idea is to label every data with some keywords and search later using those keywords. For the worst case scenario we still have a full text search for you. Of course you are keeping notes at work and at home every day so want to keep those things in one place: the data import can save the day, it can load new or modified info without you to remember where the latest edit took place."; 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 = ''; } }