tu while debe quedar asi:
Código PHP:
<table id="listanoticias">
<?php
while($rowNot = mysql_fetch_array($_pagi_result)){
?>
<tr>
<td rowspan="5"><?php echo "<img src=\"imagenes/".$rowNot['imagen']."\" width=\"120\" height=\"90\" alt=\"Descripcion\" />"; ?></td>
<td><?php echo stripslashes($rowNot['titulo']);?></td>
<td><?php echo "Noticia enviada por: ".$rowNot['email']." Fecha: ".$rowNot['f_alta']; ?></td>
<td><?php echo Recortar(nl2br(stripslashes($rowNot['texto'])),130)." <a href=\"mas.php?not_id=".$rowNot['not_ID']."\" target=\"_blank\">Más...</a>"; ?></td></tr>
<?php
}
</table>