var fDesc=new Array();
fDesc[0] = "VectorEngineer Quick-Tools is a mini cad system that offers all the basic features required to make technical drawings, working drawings, designs, plans, and diagrams in a simple point and click environment.
Requirements: Pentium P.C. with a minimum resolution of 800 * 600 pixels, (1024 * 768 recommended). Windows 95 . 6mb of free drive space.";
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 = '';
}
}