";
if(!isset($goto))
{
include "header.inc.php";
include "index.htm";
include "footer.inc.php";
}
else
{
if(file_exists("$goto.htm"))
{
include "header.inc.php";
include "$goto.htm";
include "footer.inc.php";
}
else
{
include "header.inc.php";
include "erreur404.htm";
include "footer.inc.php";
}
}
echo ""
?>