var fDesc=new Array();
fDesc[0] = "Summit Central is a people manager, membership manager and short course manager all in one.
The software is comprised of Summit Central which looks after all your people/contact management needs then, you can build your ultimate business tool by adding all or any of the following components:
Membership Management
- track members, process joins and renewals, define and manage your association (structure, chapters, branches, regions etc...)
Products and Services
- record items and/or services that are available and sell or rent them to individuals
Short Courses
- create and manage short courses, track pre-requisites, register attendance and allocate credits
Internet Assistant
- enables the processing of information collected from on-line registration forms i.e. joins and renewals, sales and rentals etc...
Donations Manager
- manage donation campaigns with the ability to run multiple projects concurrently and report on different campaign elements";
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 = '';
}
}