var fDesc=new Array(); fDesc[0] = "Virtual Display Manager, a.k. VDM, helps to address situations when one monitor “single pane” layout is not sufficient and computer users find themselves at a loss of “tabbing” through hidden windows until they get to the particular application they were looking for.

Even with multi-monitor setup “power users” can benefit from VDM’s ability to partition available space into virtual displays that behave as native physical monitors."; 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 = ''; } }