var fDesc=new Array();
fDesc[0] = "GdsViewer is designed to efficiently view, print, convert GDSII files and is packed with features to satisfy the most demanding users:
- Measuring tools with various snapping options
- Text searches
- Automatic and user defined grids
- More fill styles
- Support for various data-types
- More drawing modes
- More preference options
- Visualizing DSPF RC extraction results
- Free updates and upgrades within the same major version number";
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 = '';
}
}