var fDesc=new Array();
fDesc[0] = "Patchworker is a program that allows you to easily create correctly sized 9-patch Android resources from SVG graphics for Android development. It provides features such as:
- Load SVG, PNG, JPG and GIF images into the program.
- Optionally select the regions around the image to be expandable, if creating 9-patch images.
- Export the image automatically into your project at multiple screen densities.";
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 = '';
}
}