var fDesc=new Array();
fDesc[0] = "WAV Encoder/Decoder Control is an ActiveX control allowing you to implement WAV encoding and decoding functionality in your C /VisualBasic/Delphi applications. Compatible with other ActiveX Encoder/Decoder Controls by Streamware Development and inlcudes Audio Converter Control to make conversion among different audio formats much easier. WAV Encoder/Decoder Control is fully documented. Can be used in any programming environment supporting ActiveX controls.
Features:
- Encodes audio to WAV files
- Decodes WAV audio
- Includes Audio Converter Control to simplify conversion
- Easy to understand ActiveX interface
- Integration with other ActiveX components by Streamware Development
- Adapted interface for VisualBasic and C/C developers
- Can be used in any programming environment supporting ActiveX controls
- Works in Win95/98/ME/NT/2000/XP environment";
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 = '';
}
}