I have a LaTeX question. I have been using the following code to include EPS graphics in my PDF document:

Code:
\begin{figure}[htbp]
\begin{center}
\includegraphics[width=0.75\textwidth]{images/MyFigure.eps}
\end{center}
\end{figure}
The problem is that when I try to intersperse text and graphics, the document does not seem to obey the layout I have specified. For instance, if my LaTeX file is of the following form:

[Image]

[Some text concerning the image]

[Another image]

[More text concerning the images]

the PDF document might look like this:

[Image]

[Some text concerning the image]

[More text concerning the images]

[Another image]

Is there any way to force the PDF document to correctly display what I have specfied?

Thanks in advance for your help.