var fDesc=new Array();
fDesc[0] = "Source Elements Desktop is a complimentary standalone host for Source-Connect and Source-Live VST for Windows XP and 7. This Desktop application is available to all users free of charge.
If you wish to use Source-Connect or Source-Live with the Desktop application you will need to download the VST plug-ins separately from their respective Product page. Note that you will need an iLok dongle and valid license to use these plug-ins. Source Elements Desktop does not require any iLok or license to launch, if you only wish to use the software for record and playback purposes.";
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 = '';
}
}