var fDesc=new Array(); fDesc[0] = "Logo Creator is a utility used to create images from text input using virtually any font installed on your system. You can specify the font properties, color and a background color. You also have the option to apply a gradient effect to the background choosing the primary and secondary colors of the gradient.

If you chose, you may load your own background image. The final image can be saved as a bitmap (.bmp), jpeg, (.jpg), or tiff (.tiff) image or you can simply copy the image to the clipboard to be pasted into Microsoft Word or any other application capable of accepting images."; 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 = ''; } }