Mmm, podrias:
Código PHP:
<?
echo '<a href="link1.php?link=1">Link1</a><br>';
echo '<a href="link2.php?link=2">Link2</a><br>';
echo '<a href="link3.php?link=3">Link3</a><br>';
echo '<a href="link4.php?link=4">Link4</a><br>';
?>
Código PHP:
<?
$seccion = $_GET["link"];
echo'
<body title="Onirico Sistemas" lang="es" style="background-color: #C0C0C0">
<div style="position: absolute; width: 571px; height: 60px; z-index: 1; left: 10px; top: 15px" id="logo" align="center">
</div>
<div style="position: absolute; width: 101px; height: 419px; z-index: 2; left: 11px; top: 78px" id="menu" align="center">';
include("menu.php");
echo '</div>
<div style="position: absolute; width: 462px; height: 421px; z-index: 3; left: 117px; top: 77px; bottom: 70px" id="contenido" align="center">esto es el link ' . $seccion . '
</div>
<div style="position: absolute; width: 568px; height: 29px; z-index: 4; left: 12px; top: 500px" id="pie" align="center">
</div>
</body>';
?>