var fDesc=new Array();
fDesc[0] = "RCStudio is a Windows-based application designed for use with products incorporating the RC8650 or RC8660 chipsets. The program integrates many easy-to-use tools to fully utilize the chipsets' features. You can:
-read virtually any text (typed or from a file);
-experiment with the various RC8660 voice controls;
-graphical interface for the RC8660's registers;
-create, manage and download exception dictionaries;
-record the output of the RC8660 as a Windows wave file;
-convert wave and MP3 files into RC8660 sound files;
-create, manage and download RC8660 sound libraries;
-record directly to the RC8660's recording memory;
-create general-purpose and telephone signaling tones;
-take voltage measurements through the RC8660's ADC;
-play PCM and musical tone generator files;
-change the RC8660's default operating settings;
-add your own power-up message to the RC8660;
-download generated files to multiple target systems.";
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 = '';
}
}