function showInstalledPlugins(&$rows, $option, &$xmlfile, &$lists)
    {
        if (count($rows)) {
            ?>
			<form action="index2.php" method="post" name="installedPlugins">
			<?php 
            $rc = 0;
            for ($i = 0, $n = count($rows); $i < $n; $i++) {
                XmapAdminHtml::printPluginInfo($rows[$i]);
            }
        } else {
            ?>
			<div><?php 
            echo _XMAP_NO_PLUGINS_INSTALLED;
            ?>
</div>
			<?php 
        }
        ?>
		</table>
		<input type="hidden" name="task" value="plugins" />
		<input type="hidden" name="boxchecked" value="0" />
		<input type="hidden" name="option" value="<?php 
        echo $option;
        ?>
" />
		</form>
		<?php 
    }