var fDesc=new Array();
fDesc[0] = "Handechart is the number #1 selling handheld patient logging solution for N.P & P.A. students because….
- Chris Helopoulos, MS, PA-C, and Associate Director of Clinical Education at Barry University's Physician -Assistant Program co-designed the program to be tailored to the specific needs for Nurse Practitioner and Physician Assistant programs.
- PC desktop companion application included
- Convenient features, including desktop tools for filtering, sorting, exporting records, printing
- Conduits for syncing directly with Microsoft Access
- Friendly and helpful technical support";
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 = '';
}
}