var fDesc=new Array();
fDesc[0] = "Plogue chipsounds is a state-of-the-art software synthesizer that simulates the behavior and sounds of more than ten classic integrated circuits of the 80's, mostly from the second and third generation of video game consoles.
Main features:
- A full set of classic sound chips at your disposal.
- Nothing Else Required - The entire collection is integrated and works as a virtual instrument.
No need to purchase a separate synthesizer.
- Easy-to-Use – Start creating chip music now. Just load your instruments and play. Standardized controls allow you to become familiar with the collection quickly and master all the sounds easily. Play in real-time and
get expressive sounding performances. Express your musical ideas fast and with minimal effort.
- Universal Format - Supports all popular formats, Mac and PC, as a standalone program or as a plug-in
(VST, RTAS, and OS X AU), and works with supported sequencers and tracker programs.";
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 = '';
}
}