var fDesc=new Array();
fDesc[0] = "Manage Your Contacts is a tried and true, award-winning program that will help you easily store and manage contact information (names, addresses, phone #'s, etc.). It is so easy to use that you'll have virtually no learning curve, yet it sports a variety of powerful features to help you truly manage your contact list ...
Search, filter, and sort your entries any way you need via a very easy-to-use interface. It's a very powerful (yet extremely easy-to-use) feature that will help you with all the other useful functions you need to store and manage your list of contacts.
Store personal and/or business contacts easily (the search, filter, sort function can help you view only certain entries if needed).
Print to a variety of popular mailing labels.
Print to envelopes.
Print a concise "Phone List" that you can post near your phone, on the refrigerator, or even store in your car, wallet or purse for quick, easy reference.
Quickly compose and send e-mail messages with your system's default e-mail client.
Store the web site associated with an entry and quickly go to that web site with just a couple of keystrokes or the click of the mouse.";
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 = '';
}
}