var fDesc=new Array();
fDesc[0] = "Designed to satisfy the beginning musician or the accomplished keyboardist, the microSTATION offers unprecedented portability.
KORG microSTATION Plug-In Editor RTAS improves operational ease, as well as addressing a few small non critical issues. It is recommend that you use the latest update. A full history of updates is included in this download, as well as the Editor Owner’s Manual.";
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 = '';
}
}