var fDesc=new Array(); fDesc[0] = "What is the name of your magical island paradise? You know you own it because you can control the waterfall and the ripples it makes as it empties into the sandy pond. You can have your butterflies land from tree to tree and you can imagine cooling your feet in the clear, shallow sandy bottom of the lagoon. The beautiful water reflects a blue sky in a perfect day in paradise. Take a vacation any time the mood strikes."; 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 = ''; } }