var fDesc=new Array(); fDesc[0] = "The Budget Book of Softwarenetz is a simple software application with which you can manage your revenues and expenses simple and fast. With the Budger Book you will have a clear view of your financial situation. Aflter just one month you will be surprised how much money you spent for things you never thought about! For example you can divide you revenues and expenses into categories. This way you will see right away how much money you spended on e.g car,supermarket."; 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 = ''; } }