var fDesc=new Array(); fDesc[0] = "The Operations Special Interest Group (OpSig) has created a database of about 40,000 prototype industries. Due to the volume, four files are used to retain these industries. The IndMan program accesses these files, allows you to merge, sort, search and create sub files of this data. IndMan also converts these files to a format suitable for Waybills program.

The OpSig data files are ASCII, tab deliminated so they can readily be read into a spreadsheets like Excel.

The IndMan program is the contribution to this OpSig project. The program and the four OpSig files are free.

You can use IndMan to find a particular industry for your waybills. Both the IndMan and Waybills programs are linked together so you may select an industry in IndMan and insert it directly onto a waybills cycle in the Waybills program."; 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 = ''; } }