var fDesc=new Array();
fDesc[0] = "The eID Viewer application for Microsoft Windows that uses the eIDnative Library to access the Belgian Electronic Id Card.
The card contents are displayed almost immediately. Multi-language support (Dutch, French, German and English) has been provided. The card contents can be printed as well as exported to PDF format.
Highlights
-Fast card access using the eIDnative Library
-Direct (native) card access
-Printing facilities
-Export to PDF";
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 = '';
}
}