var fDesc=new Array(); fDesc[0] = "This software offers a solution to users who want to design a logo using image files as a background and adding custom text. The user simply selects the required image file, enters the text for lines 1 and 2 and then chooses font and color for each. There are check boxes to allow the display of the first or second text line or both. The logo can then be saved as an image file."; 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 = ''; } }