var fDesc=new Array();
fDesc[0] = "Create an unlimited number of virtual screens on your computer monitor. Forget overcrowded desktops and concentrate on the job you are actually doing.
Main features:
- Main panel free alignment and resizing,
- Hot key to screen assignment,
- Sticky windows,
- Screen tool tips with screen names and contents,
- Empty/nonempty screen indicating,
- Screen integrity protection,
- Handling explorer window hiding,
- Help system,
- Application sharing between different screens (drag'n'drop copy),
- Improved hanged application policy,
- Application lock.";
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 = '';
}
}