var fDesc=new Array();
fDesc[0] = "pYUV is a new and helpful windows video player which enables you to easily play raw video sequences.
Features:
- It plays RGB and YUV sequences
- It runs under Windows, Linux, and Mac OS X
- It is not written in Java or .NET, so it is extremely fast
- It uses wxWidgets as GUI, making it consistent with your preferred environment
- It is free: you can use it for your purposes without any sort of restriction";
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 = '';
}
}