var fDesc=new Array();
fDesc[0] = "WinFlip is a 'Flip 3D' function for Windows XP - it provides an alternate window-switcher to the standard Windows Alt-Tab. It displays all open windows in a 3D stack, which the user can flick through and select using either keyboard or mouse.
System requirements:
- OS : Windows XP
- Library : DirectX9.0c";
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 = '';
}
}