<?php
require("sessions.php");
require("global.php");
require("connect.php");
?>
<html>
<!--<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">-->
<head>
<title>:: </title>
<?php
require("selector_idioma.php"); //debe ir el primero
require("STYLES/preload.php");
require("STYLES/barras_javascript.php");
require("icono.php");
require("metatags.php");
require("STYLES/TRADUCCION/lenguaje_".$idioma.".php");
require("estilo.php");
require("scripts.php");
?>
</head>
<?php
echo("\n<!---------------MAIN--------------------------->\n");
echo("<body marginwidth=\"0\" leftmargin=\"0\" marginheight=\"0\" topmargin=\"0\">\n");
echo "<table border='0'cellpadding='0'cellspacing='0' style='position:absolute;left:0;top:0px;'>";
echo "<tr><td>";
require("top.php");
echo "</td></tr>";
echo "<tr><td>";
require("menu.php");
echo "</td></tr>";
echo "<tr><td>";
require("body.php");
if (defined("_MODULO_BARRAS"))
{
?>
<script language="JavaScript">
mover_barras(0);
mostrar_flechas();
</script>
<?php
}
echo "</td></tr>";
echo "<tr><td>";
require("footer.php");
echo "</td></tr>";
echo "</table>";
echo("\n<!-------------END MAIN----------------------------->\n");
?>
<?php
require("disconnect.php");
?>
</body>
</html>