var fDesc=new Array();
fDesc[0] = "Browse your PC/Mac’s files and folders from your iPad over the local network/Wi-Fi. Play audio/video files, create playlists, view photos/images on your iPad.
Access your PC/Mac desktop from the iPad and stay connected over the local network/Wi-Fi. View files, programs and resources exactly as if you are working on your PC/Mac via iPad";
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 = '';
}
}