var fDesc=new Array(); fDesc[0] = "Kitchen Planner is an individual 3D planning aid that allows you to plan your dream kitchen in 3D and move around the virtual room. The program allows you to customize the room dimensions (width, depth, and height), select floor or wall colors and place windows and doors wherever you want. Also, it includes a big collection of items to place in your kitchen."; 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 = ''; } }