var fDesc=new Array();
fDesc[0] = "The VST Plug-Ins can be installed to any location on your hard drive. However, every host or sequencer allows the user to set the VST Plug-Ins path in its preferences, so you have to make sure that you install the VST plug-in to the correct location defined in your host in order to use it.
The Nomad Factory plug-ins utilizes a Universal Exchange platform, this platform enables the user recall their saved presets in any of the supported hosts: AU, RTAS and VST. For this reason you will not use the standard presets protocol when working in the AU, RTAS and VST environments.";
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 = '';
}
}