<?php
function makepage($title,$content) {
?>
<html>
<head><title>Django-dataplot: <?php echo $title ?></title></head>
<body>
<table>
<tr>
<td valign="top">
<a href="index.php">News</a>
<a href="examples.php">Examples</a>
<a href="installation.php">Installation</a>
<a href="http://sourceforge.net/projects/django-dataplot/">
SourceForge.net project page</a>
<a href="doxygen/html/index.html">Doxygen</a>
<a href="pydoc/dataplot.html">Pydoc</a>
<a href="epydoc">Epydoc</a>
</td>
</tr>
<tr>
<td><?php include($content . '.php') ?></td>
</tr>
</table>
<?php include('footer.php') ?>
</body>
</html>
<?php } ?>