var fDesc=new Array();
fDesc[0] = "This is a fabulous painting programme for kids. It's simple with a clear interface, large set of brushes and colourful stamps. Also including the typical functions of paint. Your kids will love Little Painter.
Little Painter supports most popular image formats: BMP, JPEG, GIF, and PNG with an allowance to both load and save images in these formats. Apart from the usual functions such as painting freehand drawing with a pencil, using brushes of various shapes and tool for drawing straight lines, the program lets you download free coloring stencils from the Internet.";
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 = '';
}
}