var fDesc=new Array();
fDesc[0] = "With Alo Photo Scan each company can produce high resolution digital photographic shots, fast, inside their own office.
This program can control the camera 360° allowing anyone to be a photographer in seconds.
Using this program you can get very high resolution pictures, photos taken in 10 seconds, completely white background, 1:1 actual size pictures and more.";
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 = '';
}
}