var fDesc=new Array();
fDesc[0] = "Picopix Viewer 2 is a driver for Philpis PicoPix Pocket Projector. There are two types of projection modes:
- Mirrored mode: the projector displays exactly what you see on the laptop display. This mode is available on Windows XP, Vista, 7, and 8.
- Extended mode: the projector displays an additional screen as an extension to your laptop. This mode is available on Windows XP, Vista, and 7.";
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 = '';
}
}