<tr>                      </tr>
                    <tr>                      </tr>
                    </table>
                    <table width="100" border="0" align="center" cellpadding="0" cellspacing="0" class="blackBorder">
                      <tr>
                        <td align="center" nowrap bgcolor="#000000" class="white">&nbsp;Country&nbsp;</td>
                        <td align="center" nowrap bgcolor="#000000" class="white">&nbsp;ISP's&nbsp;</td>
                        <td align="center" nowrap bgcolor="#000000" class="white">&nbsp;Regions&nbsp;</td>
                        <td align="center" nowrap bgcolor="#000000" class="white">&nbsp;Cities&nbsp;</td>
                        <td align="center" nowrap bgcolor="#000000" class="white">&nbsp;Owners&nbsp;</td>
                        <td align="center" nowrap bgcolor="#000000" class="white">&nbsp;Cotacts&nbsp;</td>
                      </tr>
                     <?php 
if (count($cuntryArray) > 0) {
    for ($i = 0; $i < count($cuntryArray); $i++) {
        $arrayCount = $collections->getCount($cuntryArray[$i], true);
        echo "<tr>\n";
        echo "<td align=\"left\" nowrap class=\"white\">&nbsp;" . $cuntryArray[$i] . "&nbsp;</td>\n";
        echo "<td align=\"center\" nowrap class=\"white\">&nbsp;" . $arrayCount["isp"] . "&nbsp;</td>\n";
        echo "<td align=\"center\" nowrap class=\"white\">&nbsp;" . $arrayCount["regions"] . "&nbsp;</td>\n";
        echo "<td align=\"center\" nowrap class=\"white\">&nbsp;" . $arrayCount["cities"] . "&nbsp;</td>\n";
        echo "<td align=\"center\" nowrap class=\"white\">&nbsp;" . $arrayCount["owners"] . "&nbsp;</td>\n";
        $arrayCount = $collections->getCount($cuntryArray[$i], false);
        echo "<td align=\"center\" nowrap class=\"white\">&nbsp;" . $arrayCount[0] . "&nbsp;</td>\n";
        echo "</tr>\n";
    }
} else {
    echo "<tr>\n";
    echo "<td align=\"left\" nowrap class=\"white\">&nbsp;</td>\n";
    echo "<td align=\"center\" nowrap class=\"white\">&nbsp;</td>\n";
    echo "<td align=\"center\" nowrap class=\"white\">&nbsp;</td>\n";