var fDesc=new Array(); fDesc[0] = "This free photo sketching tool works in a very obvious way – all you need to do is open a photo and press one button. There is also one slider to adjust the level of detail – so you can decide if you want small details to be drawn or not.
The output of the photo is a pencil sketch – the picture that looks like it was drawn by pencil.
The program also has zoom and can save the result as .jpeg or .png."; 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 = ''; } }