var fDesc=new Array();
fDesc[0] = "Features:
- Includes complete modules for ID template design, cardholder database maintenance and data importing
(MS Access, Excel, dBase III, ODBC, text formats)
- Allows color correction and cropping during image acquisition
- Searches for and sorts database records according to user-definable parameters
- Links bar codes to database fields, and encodes 3-track magnetic stripes
- Prints on both sides of the card; prints multiple cards per sheet";
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 = '';
}
}