var fDesc=new Array();
fDesc[0] = "iRemote is a free Android remote for Windows Media Player on your Windows desktop, laptop, notebook or tablet.
Main features:
- Connection with all Bluetooth and WiFi solutions supported
- Easy control of play, pause, next and previous track
- Artwork
- Browse playlists, albums, artists and videos
- Search and play
- Toggle shuffle and repeat
- Control volume
- Set track position
- List all tracks in current track playing
- Swipe to to play next or previous track
- Easy setup with no configuration";
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 = '';
}
}