var fDesc=new Array(); fDesc[0] = "Wunderlist allows you to save list of items and share them with your friends. This application can be installed in PCs and mobile devices and sync them with each other. You can use the "Publish" feature to create a public URL with your list, which can then be shared with your friends."; 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 = ''; } }