"#!C:\xampp\perl\bin\perl.exe"
content-type: text/html\n\n<html><head>
<script><!--
function f()
{
top.document.formu.action='grupox.cgi#docentes';
top.document.formu.cache.value= (new Date()).getTime();
top.document.formu.submit();
}
//--></script></head><body onLoad="javascript:f();"></body></html>
EOF
;
sub opciones()
{
my ( $includeDep, $selected ) = @_;
my $html = ($selected eq "")?"<option value=\"-1\" selected style=\"color: red\">Seleccione departamento/instituto</option>\n":"";
foreach $Depto ( @$includeDep )
{
if( $selected == $Depto->[0] )
{
$html .= <<EOF;
<option selected value="$Depto->[0]" style=\"color: white\">$Depto->[2]</option>
EOF
;
}
else
{
$html .= <<EOF;
<option value="$Depto->[0]">$Depto->[2]</option>
EOF
;
}
}
return $html;
}
sub miembros()
{
my $depto = shift;
my $html = "<option value=\"-1\" selected style=\"color: red\">Seleccione docente</option>\n";
return ( $html, "<select name=\"es\" class=\"unamed2\"disabled >" ) if( $depto == -1 );
$dbh->{"conectar"}(); #$dbh1->{"conectar"}();
#obtenemos los docentes de un departamento
my ( $result, $rData, $j, $html_miembros, $a1, $a2, $no );
( $result, $rData ) = &leer_de( $dbh->{"handle"} #$dbh1->{"handle"}
, { "FROM" => "Investigadores" #"miembros"
, "SELECT" => "Id, Apellido1, Apellido2, Nombre" #"id, apellido1, apellido2, nombre"
, "WHERE" => "Cod_Departamento = '$depto'" #"departamento = '$depto'"
, "ORDERBY" => "Apellido1, Apellido2, Nombre" #"apellido1, apellido2, nombre"
}
);
return ( $html, "<select name=\"miembros\" class=\"unamed2\"disabled >" ) if( $result == 0 );
for ($j = 0; $j < $result; $j++ )
{
$a1 = ucfirst $rData->[$j][1];
$a2 = ucfirst $rData->[$j][2];
$no = ucfirst $rData->[$j][3];
$html .= <<EOF;
<option value="$rData->[$j][0]">$a1 $a2, $no</option>
EOF
;
}
$dbh->{"desconectar"}(); #$dbh1->{"desconectar"}();
return ( $html, " <select name=\"miembros\" class=\"unamed2\"enabled >" );
}
content-type: text/html\n\n
<html>
<head>
<script language="JavaScript">
<!--
$savefunction
function validarSeleccion( s )
{
if( s.options[s.selectedIndex].value != -1 )
{
document.formulario.submit();
}
}
function cerrarForm()
{
if( top.document.getElementById('fBusqueda') )
{
top.document.getElementById('fBusqueda').style.display = 'none';
}
}
//-->
</script>
<style type="text/css">
<!--
.mio { background-color: #CAE4FF; font-family: Arial, Helvetica, sans-serif; font-size: 9px}
.unamed2 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9px; font-weight: ligther; color: #333399}
.unnamed1 { background-color: #D5D5FF; font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-weight: normal; color: #333399}
body {margin-top: 0px; margin-left: 0px}
-->
</style>
</head>
<body bgcolor="#F1F4F5" onLoad="javascript:document.formulario.grupo.value=top.document.formu.cod_grupo.value;">
<form name="formulario" method="post" action="viewselect.cgi">
<INPUT type="hidden" name="grupo" value="">
<center>
<TABLE cellpadding="0" cellspacing="0" width="400">
<tbody>
<tr>
<td height="9" width="9"><img src="/servicios/ui/grupos/imagenes/es_se.bmp"></td>
<td background="/servicios/ui/grupos/imagenes/es_ls.bmp"></td>
<td width="9"><img src="/servicios/ui/grupos/imagenes/es_sd.bmp"></td>
</tr>
<tr>
<td style="background-repeat: repeat-y;" background="/servicios/ui/grupos/imagenes/es_le.bmp"></td>
<td bgcolor="#f0f0f0">
<div align="justify">
<!-- -->
<TABLE cellpadding="0" cellspacing="0" width="350">
<tbody>
<tr>
<td nowrap>
<select name="deptos" class="unamed2"onchange="javascript:validarSeleccion(this);">
$departamentos
</select>
<FONT face="Verdana, Arial, Helvetica, sans-serif" color="#990000" size="-1" class="unamed2" display:none>
<LABEL FOR="txtEsMiembro">Miembro:</LABEL>
</FONT>
$miembros_disabled
$option_miembros
</select>
<select name="txtEsMiembro" class="unamed2"onchange="javascript:validarSeleccion(this);">
$esmiembro
$no_miemb
</select>
<input name="button1" id="button1"style="border: 0px none ; background-image: url(/servicios/ui/grupos/imagenes/borde_grande.jpg); font-weight: bold; font-size: 7px;color: rgb(102, 103, 102); width: 65px; background-repeat: no-repeat; height: 20px;"
onclick="return;$savecall"
value="Aceptar"
size="31"
type="submit">
<input name="button2" id="button"
style="border: 0px none ; background-image: url(/servicios/ui/grupos/imagenes/borde_grande.jpg); font-weight: bold; font-size: 7px;
color: rgb(102, 103, 102); width: 65px; background-repeat: no-repeat; height: 20px;"
onclick="cerrarForm();"
value="Cancelar"
size="31"
type="reset">
</td>
</tr>
</tbody>
</TABLE>
<!-- -->
</div>
</td>
<td style="background-repeat: repeat-y;" background="/servicios/ui/grupos/imagenes/es_ld.bmp"></td>
</tr>
<tr>
<td height="9" width="9"><img src="/servicios/ui/grupos/imagenes/es_ie.bmp"></td>
<td background="/servicios/ui/grupos/imagenes/es_li.bmp"></td>
<td width="9"><img src="/servicios/ui/grupos/imagenes/es_id.bmp"></td>
</tr>
</tbody>
</TABLE>
</center>
</form>
</body>
</html>
EOF
;
return $_;
}