var fDesc=new Array(); fDesc[0] = "Are you tired of searching for sites in a long Favorites list? If so, this program is for you. It allows you to arrange all the sites in the Favorites. Your Favorites looks neat, and you can easily and quickly find any site you want. For example, you can create a special "News" category, and when opening the Favorites you will see a "News" section (instead of a list of the news) in which you will find the site you need."; 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 = ''; } }