I tried to create a new row in the file realestatemanager.html.php bellow the 'fotomain' but it gives me an error. I guess i'm missing something more
<tr>
<td colspan="2">
<?php
$house = $row;
//for local images
$imageURL = ($house->image_link);
if ($imageURL == ''
$imageURL = _REALESTATE_MANAGER_NO_PICTURE_BIG;
$file_name = rem_picture_thumbnail($imageURL,
$realestatemanager_configuration['fotogallery']['width'],
$realestatemanager_configuration['fotogallery']['high']);
$file = $mosConfig_live_site . '/components/com_realestatemanager/photos/' . $file_name;
echo '<img alt="' . $house->htitle . '" title="' . $house->htitle .
'" src="' . $file . '" border="0" class="little">';
?>
</td>
</tr>