var fDesc=new Array();
fDesc[0] = "SCIPIO ERP isn’t your standard ERP software, it is a full business solution. Based on Apache OFBiz, a wide range of business applications is readily available – free of cost!
SCIPIO ERP offers: an advanced eCommerce Solution, a product & catalog management application, promotion & price management, order management, customer management, warehouse & facility management, fulfillment, accounting, manufacturing management and much, much more.";
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 = '';
}
}