var fDesc=new Array();
fDesc[0] = "Transparent Image Converter is used to convert your image to a transparent (*.png) image, so you no need spend more time in Photoshop or other software, here you can easy to create the transparent background.
Main Features:
-Select the color and convert it to a transparent background.
-Manually adjust the threshold level.
-You can convert two different colors to transparent using reconvert option.
-Change the original size to any size.
-Fixed option to convert the image to exactly you given size.";
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 = '';
}
}