Viewing file: doctrina.php (5.1 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="es" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Doctrina</title>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
<link href="style.css" rel="stylesheet" type="text/css" />
<script language="JavaScript" type="text/javascript" src="js/ajax_doctrina.js"></script>
<style type="text/css">
#background-image
{
font-family: "Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
font-size: 12px;
margin: 45px;
width: 480px;
text-align: left;
border-collapse: collapse;
background: url('images/blurry.jpg') 330px 59px no-repeat;
}
#background-image th
{
padding: 12px;
font-weight: normal;
font-size: 14px;
color: #90AE1A;
}
#background-image td
{
padding: 9px 12px;
color: #666;
border-top: 1px solid #fff;
}
#background-image tfoot td
{
font-size: 11px;
}
#background-image tbody td
{
background: url('images/back.png');
}
* html #background-image tbody td
{
/*
----------------------------
PUT THIS ON IE6 ONLY STYLE
AS THE RULE INVALIDATES
YOUR STYLESHEET
----------------------------
*/
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='table-images/back.png',sizingMethod='crop');
background: none;
}
#background-image tbody tr:hover td
{
color: #339;
background: none;
}
</style>
<script type="text/javascript" src="js/lib.js"></script>
<script type="text/javascript" src="js/popup.js"></script>
<script type="text/javascript" >
// redefining default features
var _POPUP_FEATURES = 'location=0,statusbar=0,menubar=0,width=457,height=350';
listen('load', window, function() {
listen('click', 'popup-listen', event_popup );
listen('click', 'popup-feat' , event_popup_features('location=0,statusbar=1,menubar=1,width=190,height=320') );
mlisten('click', getElementsByClass('popup','a'), event_popup );
});
</script>
<script type="text/javascript" src="js/jquery1.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".menu1 a").hover(function() {
$(this).next("em").animate({opacity: "show", top: "-75"}, "slow");
}, function() {
$(this).next("em").animate({opacity: "hide", top: "-85"}, "fast");
});
});
</script>
</head>
<body>
<?php include_once("analyticstracking.php"); ?>
<div class="main">
<div class="header">
<div class="head_2">
<div class="block_header"><img src="images/cabezote BLEGAL.jpg" alt="Cabezote principal del boletín legal ambiental" width="960" height="150" border="0" />
</div>
<div class="menu">
<ul>
<li><a href="index.php">Inicio</a></li>
<li><a href="normativa.php">Normativa</a></li>
<li><a href="actos.php">Actos Administrativos</a></li>
<li><a href="doctrina.php" class="active">Doctrina</a></li>
<li><a href="jurisprudencia.php">Jurisprudencia</a></li>
<li><a href="conceptos.php">Conceptos</a></li>
</ul>
</div>
<div class="text">
<div class="left_t"></div>
<div class="right_t"><a href="sugerencias.php"><img src="images/subscribe-icon-big.png" alt="Sugerencias" title="Sugerencias" width="31" height="28" border="0" align="right" /></a>
<a href="#"><img src="images/historia.png" alt="Boletínes Anteriores" title="Boletínes Anteriores" width="31" height="28" border="0" align="right" /></a>
<img src="images/registro-usuarios.png" alt="Regístrese" title="Regístrese" width="28" height="26" border="0" align="right" onclick="popup('registro/index.php')"/>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="clr"></div>
<div class="body body_bg">
<div class="right">
<h2>Temas</h2>
<ul class="sub">
<?php include ("conex.php");
$sqlsen=mysql_query("SELECT distinct `tipo`, grupo FROM `doctrina`",$con) or die(mysql_error());
while($row = mysql_fetch_array($sqlsen)){
$tipo = ucfirst(strtolower($row["tipo"]));
echo "
<li><a href=javascript:MostrarConsulta('consulta_doctrina.php?grupo=$row[grupo]');>$tipo</a></li>
";
}
?>
</ul>
<div class="testimonials">
<h2> </h2>
<h5> </h5>
</div>
</div>
<div class="left">
<div>
<h2><span>Doctrina</span></h2>
<p>Conjunto de trabajos que tienen por objeto, exponer o interpretar el derecho, y que constituye una de las fuentes de las ciencias jurídicas. </p>
</div>
<div class="line">
<div id="resultado"></div>
<div class="clr"></div>
</div>
</div>
<div class="clr"></div>
</div>
<div class="clr"></div>
</div>
<div class="footer">
<p align="center"><a href="#">INICIO</a>|<a href="#">NORMATIVA</a>|<a href="#">ACTOS ADMINISTRATIVOS</a>|<a href="#">DOCTRINA</a>|<a href="#">JURISPRUDENCIA</a> <a href="#"></a> </p>
<p align="center">© Copyright 2011. SECRETARIA DISTRITAL DE AMBIENTE. TODOS LOS DERECHOS RESERVADOS</p>
</div>
</body>
</html>
|