var fDesc=new Array();
fDesc[0] = "With MediaType Converter it's very fast and easy to convert your music from one format into another. Save your iTunes music as MP3 files in seconds, so every standard MP3-Player is able to play them back (it works only with non-drm files).
Input Formats: MP3, WMA, AAC, M4A, OGG, WAV, CDA, AIFF, FLAC, MIDI, and more.
Ouput Formats: MP3, WAV";
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 = '';
}
}