var fDesc=new Array();
fDesc[0] = "Penciled-in Pets is an affordable software application tailored for the small business pet care professional. It could be used by a dog walker, pet sitter, trainer, or groomer.
The features of the software application are:
* Stores client, employee, and pet information
* Add service types that meet your pet sitting, dog walking, grooming or training needs.
* Schedule clients for daily appointments, vacations, or one-shot appointments.
* Add employees and assign them to jobs
* Creates varies schedules that vary by degree of detail.
* Creates invoices and stores them in history.
* Prints client, pet, employee, scheduling and financial reports.
* Birthday reminders
* Ad hoc reporting ability.";
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 = '';
}
}