var fDesc=new Array();
fDesc[0] = "As the time to market is crucial for getting a rapid ROI on a software development, the MARBEN ASN.1 Value Editor gives you the capital advantage to significantly reduce the integration/validation time and cost of your ASN.1 based application and to easily process any large ASN.1 encoded file such as ASN.1 CDRs files.
MARBEN ASN.1 Value Editor, an easy-to-use graphical tool, allows you to rapidly decode, create, edit, modify and encode any ASN.1 values without developing any software. In a few clicks, you can easily create or visualize any ASN.1 value in a user-friendly format. No need to be ASN.1 expert to interpret the data.";
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 = '';
}
}