var fDesc=new Array();
fDesc[0] = "Add your Windows programs and files to Touch Launcher and use them in a touchscreen environment.
Main Features:
- Add Windows programs and files to Touch Launcher.
- Search and open programs and files by touching the screen.
- Group programs and files together in Touch Launcher.
- Customize the Touch Launcher background image.
- Check and change your Wi-Fi connection and computer battery information with Touch Launcher. (Optional)
- Access Samsung ToDo, Weather, and Clock through Touch Launcher.
- Move the Touch Launcher widget sideways.";
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 = '';
}
}