var fDesc=new Array(); fDesc[0] = "A FREEWARE application to store all your friend's addresses in. Includes 2 name fields for all those Internet friends that you know rather by alias-name than by Real Life name.
Address Flipper is a small and convenient application to store addresses in, just in case something happens to the paper-based address book. This program was created
because a lot of available applications out there are either too large to install just for a few addresses, or don't give the functions that you want."; 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 = ''; } }