var fDesc=new Array(); fDesc[0] = "This SMS software can be used by TV stations to display a scrollbar at the bottom of the screen in television programs. The scrollbar can display incoming SMS text messages sent by viewers of the TV program. Live television programs can be made interactive this way. (Of course, the editor of the TV program can preview incoming messages and delete any undesired ones before they are displayed.)

The scrolling of the SMS text is perfectly smooth even on an average computer with a low-cost graphics card. For the purpose of broadcasting, the scrollbar can be displayed in any position and any size on the screen of any monitor attached to the system (e.g. video beam, TV- out, secondary monitor...).

Various options are available for configuring the visual appearance of the SMS ticker: the flow of the scroller (direction, speed, fading...), text appearance (font face, font size, font style...), positioning and sizing."; 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 = ''; } }