var fDesc=new Array();
fDesc[0] = "Android Remote Media Center is a client for remotely controlling and viewing your windows 7 media center and other windows (xp, vista: limited functionality) media via remote potato server (running on windows). Works well over wifi, and much better than dlna over 3G, 4G and reportedly edge. Specifically it is able to
- Browse and search the EPG Grid (*)
- Browse and Schedule recordings (*)
- Browse channels and programs (*)
- Watch videos
- Watch recorded tv
- Listen to music (with slider and shuffle)
- Browse hires pictures with multitouch
- Remote control (*)";
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 = '';
}
}