var fDesc=new Array();
fDesc[0] = "The Vulkano PC Player is a video player application that you install on your PC or laptop. In addition to being your online TV screen, Vulkano PC Player has a number of features that enhance your viewing experience. With Vulkano PC Player, you can:
- Select a Vulkano device to connect to, either local (on the same LAN as your PC) or remote (anywhere that has an internet connection) to watch Live TV.
- Change channels and control other features of your video source from an On screen Remote control
- Adjust video quality or switch to another video source
- Pause, rewind, and resume live video, using Vulkano Time-shifting controls.
- Record and save video clips to your PC, to play back later.";
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 = '';
}
}