var fDesc=new Array();
fDesc[0] = "Capture Argo Student Edition is an application that lets you work with lighting, video, moving scenery, lasers and water jets. The Student Edition of Capture Argo is a free version of the Basic Edition, with the following limitations:
- Reduced amount of trusses and fixtures in the library.
- Paper Mode, Reports and Plots are not available.
- A maximum of 2 DMX universes can be used.
- Opens and saves Student Edition projects only.";
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 = '';
}
}