var fDesc=new Array(); fDesc[0] = "People collect all kinds of stuff - beer bottle caps, Persian rugs, paintings, signatures, baseball cards, comic books, insects, coins, meteorites and even (I am not kidding) fossilized dinosaur droppings. Regular folks usually collect movies, books, DVDs and CDs. And, as a collection keeps growing and expanding, keeping track of all the items becomes a formidable and challenging task."; 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 = ''; } }