var fDesc=new Array();
fDesc[0] = "The Pegoda evaluation kits MFEV710 and MFEV852, build around an ARM Cortex-M3 processor use an open software concept and PC-based tools to give designers a convenient way to develop secure contactless reader applications, e.g. for access management or public transport.
The MFEV710 is based on the MFRC523 and the MFEV852 based on a 7 x 7 mm MFRX852 module combines the functions of the MFRC523 contactless reader IC with the functions of a MIFARE secure application module (SAM).";
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 = '';
}
}