Prueba a comprobar así
Código PHP:
<?php
include("/home/arquinau/public_html/lib/conexion.php");
$link = Conectarse();
//conexión efectuada
$res = mysql_query("SELECT titulo, fuente, imagen, noticia from noticias where id_not=".$id_not,$link);
//tomas el concurso seleccionado
if (empty(mysql_result($res,0))) {
echo "La Noticia seleccionada no existe";
exit;
}
//ahora en $rs[0] tienes el titulo de la noticia y en $rs[1] tienes el cuerpo de la noticia
Obviamente en noticia.php

Suerte