-<HTML>
+<?php
+
+//section to generate the main screen body
+function body()
+{
+//including screen function
+//
+include "scrfun.php";
+$footer=footer("P:mailleur");
+
+$STR = <<<EOD
+<HTML>
<HEAD>
<TITLE>Mailleur</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
</HEAD>
-
<BODY="white">
-
<CENTER><STRONG><FONT SIZE=+2 color=red>
Mailleur
</FONT></STRONG></CENTER>
+$footer;
+</BODY>
+</HTML>
+EOD;
-<?php
-
-//including screen function
-include "scrfun.php";
-
-echo footer("P:mailleur");
+echo $STR
+}
+//display main screen
+echo $body
?>
-</BODY>
-</HTML>