var fDesc=new Array();
fDesc[0] = "CostingNet is used to create a detail product costing sheet.
Features:
- it generates costing sheet, quotation, costing history report, cost Vs quote analysis report
- from 4.38 onward, net cost, C.I.F., L.D.P. & mark up % to retail price calculation added.
- multi-currency capability with automatic foreign exchange rate conversion and calculation
- quotation modules issue quotes to customer, create cost analysis report by different grouping
- analyze product cost and quote price, find out the cheapest supplier and most generous customer
- improve sales revenue and gross profit for each order";
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 = '';
}
}