var fDesc=new Array();
fDesc[0] = "SynthInvent is a free Windows program that allows you to experiment with synthesizer system configurations by dragging and dropping modules into cabinets. Systems can be saved and shared, exported to a spreadsheet, or made into a web page.
Easy to learn and fun to use, select any style of cabinets, drag and drop modules into cabinets, automatically totals price as you add/remove products, produces a product listing with pricing and shipping weight. Automatically adds power components, calculates power supply consumption, save, recall and share systems. Start with a standard system or create your own, creates a web page of your system.";
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 = '';
}
}