var fDesc=new Array();
fDesc[0] = "SkyBOX is a free-to-use VR video player.
Main features:
- Support all video formats, HD, full HD, 4K videos.
- Support all video types, including 180° VR, 360° VR, 2D, and 3D.
- Support all VR platforms: Oculus, Vive, Gear VR, Cardboard, and Daydream.
- Support browse the file by folder path.
- Support subtitles and audio tracks selection.";
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 = '';
}
}