var fDesc=new Array(); fDesc[0] = "GT Wine Cellar Archive Software is a program created for all wine enthusiasts to store and manage the information about their wine collection, regardless the number of bottles they have. The database can store thousands of wine bottle records with photos of the labels, so the user can easily search and find a particular wine bottle."; 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 = ''; } }