var fDesc=new Array();
fDesc[0] = "The Geometric Correction Tool 4 (hereafter called " the software ") corrects geometrical distortion of an image projected onto a special shaped screen such as a cylindrical screen, and a spherical screen from an NEC projector.
This program allows you to control the projector via a computer (hereafter called " PC ").";
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 = '';
}
}