var fDesc=new Array();
fDesc[0] = "MC-NEXT is the most advanced program of MOUS Software. The program supports all the functionality of MC-START and MC-CHECK can be integrated with MC-NEXT.
MC Next offers comprehensive functionality in order to build as designed And it monitors and simplifies all actions taken from Drawing to Realization and backwards. It uses a universal link for all CAD programs. This means that there’s no difference in functionality if you are working with AutoCAD Full, AutoCAD LT or for example BricsCad Classic. All of the CAD programs have the same workflow, so you can work right away.";
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 = '';
}
}