var fDesc=new Array();
fDesc[0] = "Record, Propellerhead Software's brand new recording software.
Record gives you unlimited audio tracks, world class effects and mixing gear, and a whole new take on music recording. With an intuitive, straightforward interface and a hands-on approach to capturing performances, Record was designed for musicians - not audio engineers. This is recording done right.";
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 = '';
}
}