var fDesc=new Array();
fDesc[0] = "MP3Mystic is a simple to use Music (MP3 and Ogg) sharing application. It lets you stream your personal music collextion across the internet or intranet, giving you complete control from each remote location. Each connection gets to choose exactly what music to listen to, as well as pausing, skipping, etc.
MP3Mystic is easy to install with NO ADDITIONAL software required. The basic version of MP3Mystic is free, with additional features available in the registered version";
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 = '';
}
}