var fDesc=new Array(); fDesc[0] = "SMS is a nice and easy to manipulate utility. With this program you will be able to send messages to your friends, family etc. Also, you can find information about the weather in the Eastern Europe, view the currency rates or check daily the Horoscope. This little tool will make your life much easier, keeping you informed in every moment of the day."; 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 = ''; } }