var fDesc=new Array();
fDesc[0] = "The line projector is a software tool that makes it possible to use a projector or beamer instead of a laser for making GRASP 3D scans. By projecting a moving line it also allows to scan objects in a semi automated manner.
Features:
- Horizontal and vertical sweep direction
- Variable sweep speed
- Variable line thickness
- Variable color settings
- Single and dual monitor capability
- Cross hair and grid for easy setup";
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 = '';
}
}