var fDesc=new Array();
fDesc[0] = "Yamaha's Tiny Wave Editor (TWE) allows the user to edit samples (.wav and .aif format) and also to import/export them via a SCSI connection. Compatible with Windows 95/98/Me/2000/XP.
The TWE Wave Editor puts a wealth of comprehensive audio editing features at your fingertips, and gives you the power to alter and enhance your audio recordings – quickly and easily! Naturally, any audio you record – such as your voice or your guitar playing, or even samples taken from MDs or CDs – is fair game for editing. Then, bring the new audio into XGworks lite V3.0A and mix it with your MIDI tracks for complete, professional-sounding productions!";
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 = '';
}
}