| 12345678910111213141516171819202122232425 |
- <?php
- $q = 'acceso_principal.php';
- ?>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta http-equiv="imagetoolbar" content="no" />
- <title>Smart Portal de S&P</title>
- <link rel="shortcut icon" type="image/x-icon" href="css/layout/global/sp.ico" />
- <script type="text/JavaScript">
- if(top.location != self.location)top.location = self.location;
- </script>
- </head>
- <frameset rows="135,*,52" frameborder="0" framespacing="0" border="0">
- <frame name="menu" src="acceso_encabezado.php" marginwidth="0" marginheight="0" scrolling="no" >
- <frame name="aplicacion" src="<?php echo($q); ?>" marginwidth="0" marginheight="0" scrolling="auto" >
- <frame name="pie" src="acceso_footer.php" marginwidth="0" marginheight="0" scrolling="auto" >
- </frameset>
- <noframes>
- </noframes>
- </html>
|