var fDesc=new Array();
fDesc[0] = "A three-in-one filter that can be used to create convincing hand sketched effects with either colour pencil, graphite pencil, or black and white pastels on a coloured paper.
The controls for both the colour and graphite pencil filters allow you to control the fine detail, shading amount and the texture, plus a edge fade out control to render a 'sketched' look to the image.";
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 = '';
}
}