var fDesc=new Array();
fDesc[0] = "Penny is a Spline based drawing&painting engine which was first introduced with Project Dogwaffle 2.1
Penny Paint is an alternate paint engine expanding Project Dogwaffle's capabilities with Spline smoothing of mouse strokes. Great for cartoonists who have a fast hand and still want their line art to remain smooth. This plugin uses Spline interpolation between the sampled mouse/tablet points, so it looks perfectly smooth without line segmentation no matter how fast you draw your lines. It's perfect for artists with a fast hand, or those used to perfectly smooth lines seen in some vector drawing products. Here you can get the same results - with raster based drawing tools.";
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 = '';
}
}