howto change format of file?

Hi
I have a file with this inside:

How can I change it to:

thanks a lot
regards
Israel.

awk ' $0~/:$/ {printf ("%s ", $0); next} 
        {print $0}   ' inputfile > outputfile

Nice!!

thanks

awk 'BEGIN{RS=""}{print $1,$2,$3}' urfile