Cheers Homer30,
Looks interesting, may be something I will need to look into in more details in the future.
About your question - I have htm page that have been generated from Magic, and what I do is use PHP to read (and format them if needed) then disply the content from within the PHP page.
for example say you have a htm file called cocoon.htm, you could write:
if(!($fp = fopen("cocoon.htm", "r"))) {
die ("Cannot open cocoon.htm.");
}
$page = (string) fread($fp, 2000000);
echo $page;
You can also edit parts of the html (remove tags) by using str_replace() on $page.
hope this helps.