i don't know anything about Joomla or Mambo, but i know that you can display one php page within another by using include().
maybe try something like this:
<?
// index.php
// do some stuff here...
?>
<div id="Layer1" style="position etc. etc.">
<?
// display the contents of page.php
include('page.php');
?>
</div>