var fDesc=new Array();
fDesc[0] = "Tavis Manufacturing is unique because it has been designed specifically to meet your needs as a metal fabricator.
No longer are you limited to software packages built for the masses, which attempt to meet the needs of multiple industries.
While offering features that are redundant to your industry, these products may only satisfy your requirements through customizations.
We have designed a specialized product that is powerful, reliable, and easier to implement.
Tavis Software's goal was to develop a top quality product for this vertical market at an 'off the shelf' price.
Many ERP implementations fail because of cost overruns from customizations.
This can be avoided with Tavis Manufacturing because of its specialized nature.
Some of the special features revolve around the handling of dimensional inventory. For example:
- tracking in-stock sizes of plates, angles, bars, etc.;
- purchase orders with plates priced by the pound yet ordered by the plate;
- tracking individual material pieces by lot codes to comply with ASME standards;
- calculating material weights and extending them throughout the application.";
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 = '';
}
}