var fDesc=new Array();
fDesc[0] = "MainLine is an image conversion and editing software developed specifically for converting any artwork into vector file format. Includes advanced features for computerized engravers and routers.
Complete Features List
- Windows Vista and XP compatible (supports earlier versions)
- Easy Installation in minutes
- No Dongle/Security keys required - Automatic authorization and activation during installation.
- Supports machines with fixed and/or rotating tools
- Build-In Cutter compensation with overlapping support
- Advanced features specifically designed for computerized engravers and routers:
Optimized Hatch Fill to bitmaps, text or shapes
Generate fills for dark areas
Create fill patterns
Centerline generation
- True View - real size engraver simulator
- Easy image acquire from any scanners (TWAIN interface)
- Full-Featured bitmap and vector editing
- Supports any bitmap formats: BMP, EPS, GEM, GIF, JPG, JIF, JTF, PCX, TGA, TIF, WPG, WMF
- Supports any vector output formats: AI, DXF, FT9, OBJ, DC2, CNC, HPGL, PLT, HGL, LOG, LGO, WMF, EMF, GEM, XLG, DAT
- Save artwork in a wide variety of formats:
Commonly used: AI, DXF, DC2, CNC, HPGL, PLT, HGL, WMF, EMF, GEM, DAT
Specialty Engraver’s formats: FT9, OBJ, LOG, LGO, XLG";
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 = '';
}
}