var fDesc=new Array();
fDesc[0] = "SAW is the acronym for Software Audio Workshop. SAWStudio combines both high-tech virtual mixing and hard disk editing technologies into one power-packed application. The look and feel of a fully controllable console, coupled with an all-new high powered 24-bit hard disk engine make this product one of the most intelligent choices for the serious audio professional.
The SAWStudio interface is a tightly woven mesh of a fully developed mixing console interface and a newly designed MultiTrack recording/editing interface. This design is truly aimed at emulating the look and feel of working in a typical hardware-based studio environment, replacing the physical mixing console, MultiTrack recorder and outboard rack-effects gear all at the same time.";
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 = '';
}
}