The paths to the external .htm files are now correct, though you also need to make sure the reference to each image inside each of these files are absolute. Take the contents of file2.html for example:
Code:
file 2
<img src="image_homepage2.jpg" width="950" height="585" alt="Image Homepage2" />
You should change the above image reference so it's absolute:
Code:
file 2
<img src="http://kruegelisms.com/freelance/PHIS/_images/image_homepage2.jpg" width="950" height="585" alt="Image Homepage2" />
The reason for this is that when the external .htm file gets added to your main page, all image paths become relative to the later directory, so the image appears broken once again. Right now if you look closely at the top of your index page, you'll see that it is in fact including the contents of the external file, with the text "file 2" appearing, then a broken image, which in Firefox is invisible.
Bookmarks