var fDesc=new Array(); fDesc[0] = "Goods Account will help you keep in a good order all information about your things. But Goods Account is not a program that only stores these text and numeric data. One of the most important program feature is that it allows you to draw and keep in a database simple schemes (plans) such as; garage, patio, warehouse, etc. For example, you are able not only note that your blue dress is in the bedroom #1, but also that this dress is inside the wardrobe. And when you ask the program where my blue dress is, it will show you scheme of your bedroom #1 (with wardrobe shown in the scheme) and point to the wardrobe. The program can be used for: Home things accounting, small offices, small shops, goods warehouses, garden activity, libraries, pharmacies, small museums, and as a helper for people who keep different kind of collections (stamps, signs, coins, etc.)"; 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 = ''; } }