var fDesc=new Array();
fDesc[0] = "GerberLogix is a free and easy to use image files viewer.
Features:
- Input of files with auto recognition of file type
(extended Gerber / Excellon1, Excellon2 ).
- Direct input of compressed Zip files.
- High resolution picture export (TIFF, JPG, PNG, BMP).
- Integrated screenshot function.
- Three draw modes included (Filled, Outline, Both).
- Size info drawn directly into all features.
- Pictures can be imported and displayed behind the real CAD data.
- Multiple selection possibilities including transparent drawing.
- Selection of a net.
- Layers/Objects can be moved, rotated and mirrored.
- Layers with different offsets can be aligned automatically.
- Special color setup for layer color definition.";
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 = '';
}
}