var fDesc=new Array();
fDesc[0] = "Flying Haggis is a great sounding, expressive virtual guitar amp with a no-nonsense design and a character all of its own. Rather than follow the current trend of simulating existing hardware, Dave (our technical architect) designed this amp the old fashioned way - using his ears. And since Dave likes playing blues & rock, that's what Flying Haggis is really good at.
Main features:
- traditionally designed amp with its own unique sound
- all-round performer, excels at clean and subtle tones
- ultra low latency for responsive live playing
- irresistible user interface
- flexible preset management in standalone player and plug-ins
- optimised for live performances
- full MIDI control, with easy to use MIDI Learn
- plug-ins for PC Windows (VST) and Mac OS X (VST, Audio Units)
- standalone player for PC and Mac (Universal Binary)";
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 = '';
}
}