var fDesc=new Array();
fDesc[0] = "Type In Image Buddy is a program that allows you to type in Images, It is great to file out forms and applications.
Features:
-Allows User to Type in Any Image
-Lets user adjust the size of the type box using the arrow keys.
-Lets user put a text box anywhere on the image with 1 click
-Allows the users to Save the entered text by Double Clicking on the text box
-Allows user to Save the New Image to a new location with text the user has added
-Allows user to save custom profiles, with a image and all the text boxes in custom locations.
-Allows user to Change Font type and Font Size, Etc
-Lets users print out the New Image with the text the user has added.";
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 = '';
}
}