var fDesc=new Array();
fDesc[0] = "DVD-Audio Solo Standard is a DVD authoring tool that helps you create DVD-audio discs using any combination of your favorite WAV, FLAC, MP3, or AIF audio files. It also provides features such as:
- Support iTunes and Windows Media Player playlists.
- Support still video for each audio track for DVD-Audio/Video discs.
- Write to all recordable DVD discs including double layer.
- Rip and play DVD-Audio discs unencrypted and non MLP encoded.";
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 = '';
}
}