Viewing file: conceptos.php (2.4 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>Suelos</title>
<!--<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />-->
<link href="styles2.css" rel="stylesheet" type="text/css" />
<script language="JavaScript" type="text/javascript" src="js/ajax_conceptos.js"></script>
<script language="javascript" type="text/javascript" src="niceforms.js"></script>
<link rel="stylesheet" type="text/css" media="all" href="niceforms-default.css" />
<link href="style.css" rel="stylesheet" type="text/css" />
<style>
.black_overlay{
display: none;
position: absolute;
top: 0%;
left: 0%;
width: 100%;
height: 200%;
background-color: black;
z-index:1001;
-moz-opacity: 0.8;
opacity:.80;
filter: alpha(opacity=80);
}
.white_content {
display: none;
position: absolute;
top: 25%;
left: 10%;
width: 80%;
height: 100%;
padding: 16px;
border: 16px solid #A5B924;
background-color: white;
z-index:1002;
overflow: auto;
}
</style>
<SCRIPT LANGUAGE="JavaScript">
function popup(page) {
window.open(page,'popup','width=457,height=350,toolbar=false,scrollbars=false,top=60,left=330');
}
</SCRIPT>
</head>
<body>
<div class="main">
<div class="clr"></div>
<div class="body body_bg">
<div id="container">
<form name="consulta" onsubmit="MostrarConsulta('consulta_suelos.php'); return false" class="niceform">
<fieldset>
<legend>Consulta </legend>
<dl>
<dt>
<label for="chip">CHIP :</label></dt>
<dd><input type="text" name="chip" id="chip" size="32" maxlength="32" /></dd>
</dl>
<dl>
<dt>
<label for="matricula">MATRÍCULA:</label></dt>
<dd><input type="text" name="matricula" id="matricula" size="32" maxlength="32" /></dd>
</dl>
<dl>
<fieldset class="action">
<input type="submit" name="mostrar" id="mostrar" value="Consultar" />
</fieldset>
</fieldset>
</form>
</div>
<div id="resultado"></div>
<div class="clr"><table border="0">
<tbody>
</tbody></table></div>
<div class="clr"></div>
</div>
<div class="clr"></div>
</div>
<div class="footer">
</div>
</html>
|