var fDesc=new Array();
fDesc[0] = "PaintTool SAI is a high quality and lightweight painting software. By providing easy and stable operations, fully digitizer support and anti-aliased paintings this program makes digital art more enjoyable and comfortable.
Features:
- Fully digitizer support with pressure.
- Amazing anti-aliased drawings.
- Highly accurate composition with 16bit ARGB channels.
- Simple but powerful user interface, easy to learn.
- Fully supports Intel MMX Technology.
- Data protection function to avoid abnormal termination such as bugs.";
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 = '';
}
}