var fDesc=new Array(); fDesc[0] = "KitchenHub is an all-in-one, easy to use family organizer that helps you to manage and simplify your busy family life. The home screen displays your family's daily agenda, your up and coming tasks, your emails and your important messages, all color coded for each person so you can see at a glance exactly who is doing what and when. From the home screen, with just a click or two, you can create new appointments, read and send emails, lookup an address or phone number, add items to your shopping list, find a favorite recipe or check the local weather."; 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 = ''; } }