var fDesc=new Array();
fDesc[0] = "Diamante is a successful and innovative Italian developer of business applications for small and medium enterprises. Since we set up in 1997, we have built up a solid portfolio of products
and a strong and loyal customer base. Today, some 4000 Italian businesses
rely on Diamante solutions. Diamante has developed three successful business streams spanning
resource, process and information management for SMEs.";
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 = '';
}
}