/* clinician.inc */
// For displaying clinician's with photos in 2 column display
// Given the total number of clinicians (rows from the db query)
// computes the correct number of 2-column rows and
s to display
function rightRows($rowCount) {
$rowCount = $rowCount/2;
if (substr($rowCount, -2) == ".5") {
$rowCount = floor($rowCount);
}
else {
$rowCount = $rowCount - 1;
}
return $rowCount;
}
?>