var fDesc=new Array();
fDesc[0] = "Designed for elders and ministerial servants responsible for the various congregation meeting schedules.
KHS combines several commonly needed schedules into a single user interface.
Main features:
- Combine all meeting assignments for into one report
- Combined CBS, TMS, and SM schedules into one report
- Trade information with other users electronically
- E-mail reports directly using Gmail, Outlook, or SMTP
- Data is safe and secure on your local hard drive
- Password protect your data
- Supported languages: English, Spanish, French, Dutch, German, American Sign Language
Requirements:
- A PC with a 1GHz or faster processor
- 32 or 64 bit Windows OS
- 512 MB of RAM
- Screen resolution of 1024 x 600 or higher *
- Fast Internet connection
- Administrator User rights
- Internet Explorer";
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 = '';
}
}