var fDesc=new Array();
fDesc[0] = "BeTwin is the software that allows multiple users to simultaneously and independently share a personal computer running Windows 2000 Professional, Windows XP Professional or Home Edition (32-bit).
Installation is simple. Install a second VGA card and connect it to the second monitor. Plug in a USB mouse, USB keyboard and, optionally, USB speakers. Finally, install the BeTwin software.";
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 = '';
}
}