var fDesc=new Array();
fDesc[0] = "Full-featured painting tool
Artweaver is a full-featured painting tool with a huge set of predefined realistic brushes to paint creatively or just experiment. Artweaver is suitable for beginners and advanced users.
Realistic brushes
Artweaver has a powerful and highly configurable brush system to simulate many different brushes.
Friendly interface
Artweaver has an intuitive and easy to use user interface but which is fully configurable.
Work in a team
Artweaver allows you to work together with other artists over the Internet.
Powerful core
Artweaver is powered by a powerful core which supports many tools, layers and filters.";
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 = '';
}
}