var fDesc=new Array();
fDesc[0] = "Dynamic Auto Painter (DAP) is not just ordinary photo to painting effect! Instead of changing pixels DAP uses the photo as a reference and then paint with real brush strokes captured from paintings of famous painters such as Van Gogh, Monet, Sargent, Cezanne… to closely recreate and mimic their signature style.
Dynamic Auto-Painter can work also as a great feedback tool to improve your photography skills by simplifying the image to its core visual values.";
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 = '';
}
}