var fDesc=new Array();
fDesc[0] = "With ConnectIT you can set-up and manage interfaces for standard Microsoft Dynamics NAV, add-on solutions and customizations with any other third party application.
ConnectIT is a user friendly and flexible application that meets all the systems integration requirements you could wish for.";
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 = '';
}
}