var fDesc=new Array();
fDesc[0] = "Manage and monitor inventory cover raw material warehouse and finished product stock quantity and movement.
Main Features:
-record material and product in / out history,
-monitor real time stock balance with materials ship-to-stock or product ship-from-stock functions,
-view material stock quantity and total cost, (Purchasing module required)
-view product stock quantity and total amount (Invoicing or Product Sale module required)";
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 = '';
}
}