<div style="margin:10px;">
			 
		</div>
		<?php 
    if ($action == 'Populate Collection GUIDs') {
        echo '<ul>';
        $uuidManager->populateGuids($collId);
        echo '</ul>';
    } elseif ($action == 'Populate GUIDs') {
        echo '<ul>';
        $uuidManager->populateGuids();
        echo '</ul>';
    }
    //$collCnt = $uuidManager->getCollectionCount();
    $occCnt = $uuidManager->getOccurrenceCount($collId);
    $detCnt = $uuidManager->getDeterminationCount($collId);
    $imgCnt = $uuidManager->getImageCount($collId);
    ?>
		<?php 
    if ($collId) {
        echo '<h3>' . $uuidManager->getCollectionName($collId) . '</h3>';
    }
    ?>
		<div style="font-weight:bold;">Records without GUIDs (UUIDs)</div>
		<div style="margin:10px;">
			<div><b>Occurrences: </b><?php 
    echo $occCnt;
    ?>
</div>
			<div><b>Determinations: </b><?php 
    echo $detCnt;