var fDesc=new Array(); fDesc[0] = "This program allows you to listen to various radio stations. The program includes an international database with station logos accessible from V-Network. It allows you to view the currently playing song on the station you are listening to and it has multiple choices to navigate through your stations."; 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 = ''; } }