I don't usually recommend iframes and this isn't really a PHP question, but here's a possible DHTML solution:
Place an Iframe inside the page, the place a tartget link to the Iframe, like the below example.
HTML Code:
<html>
<head>
<title>Open Word in Iframe</title>
</head>
<body>
<DIV align="CENTER">
<TABLE BORDER="1" CELLSPACING="1" CELLPADDING="1" WIDTH="100%">
<TR>
<TD WIDTH="25%" ALIGN="left" VALIGN="TOP">
<a href="doc1.doc" target="awindow">Doc 1</A><br>
<a href="doc2.doc" target="awindow">Doc 2</A><br>
<a href="doc3.doc" target="awindow">Doc 3</A>
</TD>
<TD WIDTH="75%" ALIGN="CENTER" VALIGN="TOP">
<iframe name="awindow" frameborder=2 width=580 height=440 src="title.html"></iframe>
</TD></TR></TABLE></CENTER>
</DIV>
</body>
</html>
Replace the doc names with the word document names.
Replace title.html with the file you want to originally show up in the iframe when the page loads.
Bookmarks