var fDesc=new Array();
fDesc[0] = "MiniVODViewer is a borderless and always on top viewer for video on demand services like Netflix or Amazon Prime Video.
It's a simple application that embeds Internet Explorer in a borderless and always on top window so that you can watch Netflix or other video on demand services while working.
Features:
Always on top
Border less window (Toolbar appears when moving the mouse over the top of the window)
Quick Navigation between different VOD-Services
Configurable services (Add your own VOD-Websites)
It's free!";
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 = '';
}
}