var fDesc=new Array();
fDesc[0] = "Using Projector Station for Air Shot, any image of a computer can be transported and projected on the projector. Images from several computers can also be easily switched and projected.
This download contains the following software applications.
- Projector Station for Air Shot 2 Version 1.03
- Projector Station for Presentation Version 4.20
- USB Wireless LAN Module Utility";
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 = '';
}
}