// -*- mode: php -*-
require("html.php");
// Quelques paramètres de couleur :
// Couleurs :
$_CO_BASE_FONCE='#224466';
$_CO_BASE='#CC9966';
$_CO_COMP='#336699';
//$_BODY_BG='#e5ffec';
$_BODY_BG='#effff3';
// Entête
doctype_transitional();
html();
head();
meta_http_equiv("Content-Type", "text/html; charset=iso-8859-1");
title("ALIDECS home page");
// Récup du parametre $page AVEC VERIF
// par defaut :
// pb register_globals sinon
$page = $_GET['page'];
$_PAGE_TO_INCLUDE = "./home.html" ;
if ($page) {
if (file_exists("./".$page.".html")) {
$_PAGE_TO_INCLUDE = "./".$page.".html" ;
} else {
$_PAGE_TO_INCLUDE = "./error.html" ;
}
}
?>