var fDesc=new Array();
fDesc[0] = "With Multi-Monitor Viewer you can view the contents of any of your monitors inside a typical application window.
Working on a PC with multiple monitors, in an extended desktop, while in general, it can be a very rewarding and interesting experience, it might end up being a nightmare when it happens that you cannot actually have physical eye contact with one or more of your monitors. The typical scenario of such a case is when you need some of your monitors to face your audience during a presentation. There is no easy way to view what your audience sees without moving yourself in a proper position in space in order to establish eye contact with the presentation monitor.
Multi-Monitor Viewer is a software that allows for viewing the contents of any of your monitors inside a typical application window, making browsing the contents of your monitors super easy.";
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 = '';
}
}