var fDesc=new Array();
fDesc[0] = "Chant ProfileKit Win64 Developer Edition includes essential components and samples so you have everything you need to develop software that manages speech recognition profiles for Win64 platforms.
The single end-user (individual) license enables software activation for specific development system (Win64 platform).
The Win64 Developer Edition includes the following component libraries and samples:
- ActiveX, C-DLL, Java, and .NET Framework (v2, and v3) component libraries that support Microsoft SAPI 5.3 speaker profile formats;
- Sample profile backup-restore and speaker training application projects for the following development environments:
- Microsoft Visual Studio 2008, 2010 and
- Sun JDK.";
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 = '';
}
}