var fDesc=new Array();
fDesc[0] = "- Fast and accurate: fast loading and drawing
- Support of GDS and OASIS file formats with automatic uncompression of zlib compatible formats
- Full support of properties
- Full 64 bit support on Linux
- Extensible and configurable to a large degree by custom ruby scripts
- Overlay capabilities: multiple layouts can be loaded into one window
- Very flexible layer configuration: many display options including choice of fill pattern and different frame and fill colors. Animation, transparency, dimming/highlighting ...
- Layer grouping: the display properties of a group of layers can be changed at once
- Advanced layer display attributes: layers can be named, they can carry additional transformations, select certain hierarchy levels or select shapes by their properties
- Copy and paste of layers attributes to other panels
- Support of GDS and OASIS file formats with automatic uncompression of zlib compatible formats
- Full support of properties
- Full 64 bit support on Linux
- Extensible and configurable to a large degree by custom ruby scripts
- Overlay capabilities: multiple layouts can be loaded into one window
- Very flexible layer configuration: many display options including choice of fill pattern and different frame and fill colors. Animation, transparency, dimming/highlighting ...
- Layer grouping: the display properties of a group of layers can be changed at once
- Advanced layer display attributes: layers can be named, they can carry additional transformations, select certain hierarchy levels or select shapes by their properties
- Copy and paste of layers attributes to other panels";
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 = '';
}
}