Parent Directory
|
Revision Log
Revision 9 - (view) (download) (as text)
| 1 : | egutierrez | 9 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
| 2 : | egutierrez | 7 | <!-- |
| 3 : | egutierrez | 9 | Diseñado por Estefani Gutiérrez |
| 4 : | egutierrez | 7 | |
| 5 : | egutierrez | 9 | Nombre : Repositorio de Licencias para REAS |
| 6 : | Descripción: | ||
| 7 : | Versión : | ||
| 8 : | egutierrez | 7 | --> |
| 9 : | egutierrez | 9 | |
| 10 : | egutierrez | 7 | <html xmlns="http://www.w3.org/1999/xhtml"> |
| 11 : | <head> | ||
| 12 : | <meta name="keywords" content="" /> | ||
| 13 : | <meta name="description" content="" /> | ||
| 14 : | <meta http-equiv="content-type" content="text/html; charset=utf-8" /> | ||
| 15 : | egutierrez | 9 | <title>Repositorio de Licencias | Crear Usuario</title> |
| 16 : | egutierrez | 7 | <!--Conexión con la Base de Datos--> |
| 17 : | <?php | ||
| 18 : | include("conexion.php"); | ||
| 19 : | ?> | ||
| 20 : | <!--Enlace con hoja de Estilo--> | ||
| 21 : | <link href="style.css" rel="stylesheet" type="text/css" media="screen" /> | ||
| 22 : | |||
| 23 : | egutierrez | 9 | |
| 24 : | <link rel="stylesheet" href="menu8.css" type="text/css" /> | ||
| 25 : | <!--[if IE 6]><style>#menu ul li.nivel1 {margin-bottom:-1px}</style><![endif]--> | ||
| 26 : | <!--[if IE 7]><style>#menu ul li.nivel1 {margin-bottom:-2px}</style><![endif]--> | ||
| 27 : | egutierrez | 7 | <!--Inicio de Codigo JavaScript--> |
| 28 : | |||
| 29 : | egutierrez | 9 | <!-- Invocacion de validaciones --> |
| 30 : | <script type="text/javascript" src="/repositorio_rea/js/validaciones.js"></script> | ||
| 31 : | egutierrez | 7 | |
| 32 : | <script> | ||
| 33 : | function addOpt(oCntrl, iPos, sTxt, sVal){ | ||
| 34 : | var selOpcion=new Option(sTxt, sVal); | ||
| 35 : | eval(oCntrl.options[iPos]=selOpcion); | ||
| 36 : | } | ||
| 37 : | |||
| 38 : | //---cambio de funcion estado | ||
| 39 : | function cambiaE(oCntrl){ | ||
| 40 : | while (oCntrl.length) oCntrl.remove(0); | ||
| 41 : | switch (document.frm.pais.selectedIndex){ | ||
| 42 : | case 0: | ||
| 43 : | addOpt(oCntrl, 0, "-Seleccione Estado-", "0"); | ||
| 44 : | break; | ||
| 45 : | case 1: | ||
| 46 : | <?php | ||
| 47 : | $sqlA= "select*from estado where id_pais=1"; | ||
| 48 : | $cursorA = mysql_query($sqlA); | ||
| 49 : | $num_regA=mysql_num_rows($cursorA); | ||
| 50 : | for($e=0;$e<$num_regA;$e++){ | ||
| 51 : | $estado=mysql_result($cursorA,$e,'nombre_estado'); | ||
| 52 : | if($e==0){ | ||
| 53 : | ?> | ||
| 54 : | addOpt(oCntrl, 0, "-Seleccione Estado-", "0"); | ||
| 55 : | addOpt(oCntrl, 1, "<?php echo $estado; ?>", "<?php echo $estado; ?>"); | ||
| 56 : | <?php | ||
| 57 : | } | ||
| 58 : | else{ | ||
| 59 : | ?> | ||
| 60 : | addOpt(oCntrl, <?php echo $e+1; ?>, "<?php echo $estado; ?>", "<?php echo $estado; ?>"); | ||
| 61 : | <?php | ||
| 62 : | } | ||
| 63 : | } | ||
| 64 : | ?> | ||
| 65 : | break; | ||
| 66 : | } | ||
| 67 : | } | ||
| 68 : | |||
| 69 : | //Cambio de dia por mes// | ||
| 70 : | function cambiaF(oCntrl){ | ||
| 71 : | while (oCntrl.length) oCntrl.remove(0); | ||
| 72 : | |||
| 73 : | if(document.frm.mes.value=='02'){ | ||
| 74 : | |||
| 75 : | addOpt(oCntrl, 0, "dia", "dia"); | ||
| 76 : | addOpt(oCntrl, 1, "01", "01"); | ||
| 77 : | addOpt(oCntrl, 2, "02", "02"); | ||
| 78 : | addOpt(oCntrl, 3, "03", "03"); | ||
| 79 : | addOpt(oCntrl, 4, "04", "04"); | ||
| 80 : | addOpt(oCntrl, 5, "05", "05"); | ||
| 81 : | addOpt(oCntrl, 6, "06", "06"); | ||
| 82 : | addOpt(oCntrl, 7, "07", "07"); | ||
| 83 : | addOpt(oCntrl, 8, "08", "08"); | ||
| 84 : | addOpt(oCntrl, 9, "09", "09"); | ||
| 85 : | addOpt(oCntrl, 10, "10", "10"); | ||
| 86 : | addOpt(oCntrl, 11, "11", "11"); | ||
| 87 : | addOpt(oCntrl, 12, "12", "12"); | ||
| 88 : | addOpt(oCntrl, 13, "13", "13"); | ||
| 89 : | addOpt(oCntrl, 14, "14", "14"); | ||
| 90 : | addOpt(oCntrl, 15, "15", "15"); | ||
| 91 : | addOpt(oCntrl, 16, "16", "16"); | ||
| 92 : | addOpt(oCntrl, 17, "17", "17"); | ||
| 93 : | addOpt(oCntrl, 18, "18", "18"); | ||
| 94 : | addOpt(oCntrl, 19, "19", "19"); | ||
| 95 : | addOpt(oCntrl, 20, "20", "20"); | ||
| 96 : | addOpt(oCntrl, 21, "21", "21"); | ||
| 97 : | egutierrez | 9 | addOpt(oCntrl, 22, "22", "22"); |
| 98 : | egutierrez | 7 | addOpt(oCntrl, 23, "23", "23"); |
| 99 : | addOpt(oCntrl, 24, "24", "24"); | ||
| 100 : | addOpt(oCntrl, 25, "25", "25"); | ||
| 101 : | addOpt(oCntrl, 26, "26", "26"); | ||
| 102 : | addOpt(oCntrl, 27, "27", "27"); | ||
| 103 : | addOpt(oCntrl, 28, "28", "28"); | ||
| 104 : | addOpt(oCntrl, 29, "29", "29"); | ||
| 105 : | } | ||
| 106 : | |||
| 107 : | else{ | ||
| 108 : | |||
| 109 : | if((document.frm.mes.value=='01')||(document.frm.mes.value=='03')||(document.frm.mes.value=='05')||(document.frm.mes.value=='07')||(document.frm.mes.value=='08')||(document.frm.mes.value=='12')){ | ||
| 110 : | |||
| 111 : | addOpt(oCntrl, 0, "dia", "dia"); | ||
| 112 : | addOpt(oCntrl, 1, "01", "01"); | ||
| 113 : | addOpt(oCntrl, 2, "02", "02"); | ||
| 114 : | addOpt(oCntrl, 3, "03", "03"); | ||
| 115 : | addOpt(oCntrl, 4, "04", "04"); | ||
| 116 : | addOpt(oCntrl, 5, "05", "05"); | ||
| 117 : | addOpt(oCntrl, 6, "06", "06"); | ||
| 118 : | addOpt(oCntrl, 7, "07", "07"); | ||
| 119 : | addOpt(oCntrl, 8, "08", "08"); | ||
| 120 : | addOpt(oCntrl, 9, "09", "09"); | ||
| 121 : | addOpt(oCntrl, 10, "10", "10"); | ||
| 122 : | addOpt(oCntrl, 11, "11", "11"); | ||
| 123 : | addOpt(oCntrl, 12, "12", "12"); | ||
| 124 : | addOpt(oCntrl, 13, "13", "13"); | ||
| 125 : | addOpt(oCntrl, 14, "14", "14"); | ||
| 126 : | addOpt(oCntrl, 15, "15", "15"); | ||
| 127 : | addOpt(oCntrl, 16, "16", "16"); | ||
| 128 : | addOpt(oCntrl, 17, "17", "17"); | ||
| 129 : | addOpt(oCntrl, 18, "18", "18"); | ||
| 130 : | addOpt(oCntrl, 19, "19", "19"); | ||
| 131 : | addOpt(oCntrl, 20, "20", "20"); | ||
| 132 : | addOpt(oCntrl, 21, "21", "21"); | ||
| 133 : | egutierrez | 9 | addOpt(oCntrl, 22, "22", "22"); |
| 134 : | egutierrez | 7 | addOpt(oCntrl, 23, "23", "23"); |
| 135 : | addOpt(oCntrl, 24, "24", "24"); | ||
| 136 : | addOpt(oCntrl, 25, "25", "25"); | ||
| 137 : | addOpt(oCntrl, 26, "26", "26"); | ||
| 138 : | addOpt(oCntrl, 27, "27", "27"); | ||
| 139 : | addOpt(oCntrl, 28, "28", "28"); | ||
| 140 : | addOpt(oCntrl, 29, "29", "29"); | ||
| 141 : | addOpt(oCntrl, 30, "30", "30"); | ||
| 142 : | addOpt(oCntrl, 31, "31", "31"); | ||
| 143 : | } | ||
| 144 : | |||
| 145 : | else{ | ||
| 146 : | |||
| 147 : | if((document.frm.mes.value=='04')||(document.frm.mes.value=='06')||(document.frm.mes.value=='09')||(document.frm.mes.value=='10')||(document.frm.mes.value=='11')){ | ||
| 148 : | |||
| 149 : | addOpt(oCntrl, 0, "dia", "dia"); | ||
| 150 : | addOpt(oCntrl, 1, "01", "01"); | ||
| 151 : | addOpt(oCntrl, 2, "02", "02"); | ||
| 152 : | addOpt(oCntrl, 3, "03", "03"); | ||
| 153 : | addOpt(oCntrl, 4, "04", "04"); | ||
| 154 : | addOpt(oCntrl, 5, "05", "05"); | ||
| 155 : | addOpt(oCntrl, 6, "06", "06"); | ||
| 156 : | addOpt(oCntrl, 7, "07", "07"); | ||
| 157 : | addOpt(oCntrl, 8, "08", "08"); | ||
| 158 : | addOpt(oCntrl, 9, "09", "09"); | ||
| 159 : | addOpt(oCntrl, 10, "10", "10"); | ||
| 160 : | addOpt(oCntrl, 11, "11", "11"); | ||
| 161 : | addOpt(oCntrl, 12, "12", "12"); | ||
| 162 : | addOpt(oCntrl, 13, "13", "13"); | ||
| 163 : | addOpt(oCntrl, 14, "14", "14"); | ||
| 164 : | addOpt(oCntrl, 15, "15", "15"); | ||
| 165 : | addOpt(oCntrl, 16, "16", "16"); | ||
| 166 : | addOpt(oCntrl, 17, "17", "17"); | ||
| 167 : | addOpt(oCntrl, 18, "18", "18"); | ||
| 168 : | addOpt(oCntrl, 19, "19", "19"); | ||
| 169 : | addOpt(oCntrl, 20, "20", "20"); | ||
| 170 : | addOpt(oCntrl, 21, "21", "21"); | ||
| 171 : | egutierrez | 9 | addOpt(oCntrl, 22, "22", "22"); |
| 172 : | egutierrez | 7 | addOpt(oCntrl, 23, "23", "23"); |
| 173 : | addOpt(oCntrl, 24, "24", "24"); | ||
| 174 : | addOpt(oCntrl, 25, "25", "25"); | ||
| 175 : | addOpt(oCntrl, 26, "26", "26"); | ||
| 176 : | addOpt(oCntrl, 27, "27", "27"); | ||
| 177 : | addOpt(oCntrl, 28, "28", "28"); | ||
| 178 : | addOpt(oCntrl, 29, "29", "29"); | ||
| 179 : | addOpt(oCntrl, 30, "30", "30"); | ||
| 180 : | } | ||
| 181 : | } | ||
| 182 : | } | ||
| 183 : | } | ||
| 184 : | |||
| 185 : | |||
| 186 : | </script> | ||
| 187 : | </head> | ||
| 188 : | <body> | ||
| 189 : | <form name="frm" method="post" action="confirma-registro.php"> | ||
| 190 : | <div id="wrapper"> | ||
| 191 : | <div id="membrete"> | ||
| 192 : | </div> | ||
| 193 : | <div id="enlaces"> | ||
| 194 : | <p align="right"><a href="http://www.cenditel.gob.ve/" title="Principal | Cenditel Nodo Mérida">Cenditel</a> | <a href="#noticias" title="Noticias">Noticias</a></p> | ||
| 195 : | </div> | ||
| 196 : | egutierrez | 9 | <div id="titulo"> |
| 197 : | egutierrez | 7 | </div> |
| 198 : | <!-- end #header --> | ||
| 199 : | <div id="page"> | ||
| 200 : | <div id="page-bgtop"> | ||
| 201 : | <div id="page-bgbtm"> | ||
| 202 : | <div id="content"> | ||
| 203 : | <div class="post"> | ||
| 204 : | <h3 class="title"><a href="#">Crear Cuenta de Usuario </a></h3> | ||
| 205 : | <p class="links"><a href="#"><font size="3">Información de la Cuenta</font></a></p> | ||
| 206 : | <div style="clear: both;"> </div> | ||
| 207 : | <div class="entry"> | ||
| 208 : | <table><!--Tabla de inserción de datos de la cuenta--> | ||
| 209 : | <tr> | ||
| 210 : | <td align="right">* Nombre de Usuario</td> | ||
| 211 : | <td><input name="nombre_usuario" id="nombre_usuario" type="text"/></td> | ||
| 212 : | </tr> | ||
| 213 : | <tr> | ||
| 214 : | <td align="right">* Contraseña</td> | ||
| 215 : | <td><input name="contrasenha" id="contrasenha" type="password"/></td> | ||
| 216 : | </tr><tr> | ||
| 217 : | <td align="right">* Repita Contraseña</td> | ||
| 218 : | <td><input name="contrasenha1" id="contrasenha1" type="password"/></td> | ||
| 219 : | </tr> | ||
| 220 : | </table> | ||
| 221 : | </div> | ||
| 222 : | </div> | ||
| 223 : | <div class="post"> | ||
| 224 : | <p class="links"><a href="#"><font size="3">Información Personal</font></a></p> | ||
| 225 : | <div style="clear: both;"> </div> | ||
| 226 : | <div class="entry"> | ||
| 227 : | <table><!--Tabla de inserción de informacón Personal--> | ||
| 228 : | <tr> | ||
| 229 : | <td align="right">* Nombre y Apellido</td> | ||
| 230 : | egutierrez | 9 | <td><input name="nombre_apellido" id="nombre_apellido" type="text" onkeypress="return solo_letras(event)" onblur="espacios_vacios('nombre_apellido')"/></td> |
| 231 : | egutierrez | 7 | </tr> |
| 232 : | <tr> | ||
| 233 : | <td align="right">* Correo Electrónico</td> | ||
| 234 : | egutierrez | 9 | <td><input name="correo_electronico" id="correo_electronico" type="text" onblur="solo_correo_electronico('correo_electronico')"/></td> |
| 235 : | egutierrez | 7 | </tr> |
| 236 : | <tr> | ||
| 237 : | <td align="right">*Sexo</td> | ||
| 238 : | egutierrez | 9 | <td> <input type="radio" name="sexo" id="sexo" value="m"/>Masculino |
| 239 : | <input type="radio" name="sexo" id="sexo" value="f"/>Femenino</td> | ||
| 240 : | egutierrez | 7 | </tr> |
| 241 : | <tr> | ||
| 242 : | <td align="right">* Fecha de Nacimiento</td> | ||
| 243 : | <td> | ||
| 244 : | egutierrez | 9 | <select name="anno" id="anno" onblur="seleccion_anno('anno')"> |
| 245 : | egutierrez | 7 | <option selected>año</option> |
| 246 : | <option> 1950</option><option> 1951</option><option> 1952</option><option> 1953</option><option> 1954</option><option> 1955</option><option> 1956</option><option> 1957</option><option> 1958</option><option> 1959</option><option> 1960</option><option> 1961</option><option> 1962</option><option> 1963</option><option> 1964</option><option> 1965</option><option> 1966</option><option> 1967</option><option> 1968</option><option> 1969</option><option> 1970</option><option> 1971</option><option> 1972</option><option> 1973</option><option> 1974</option><option> 1975</option><option> 1976</option><option> 1977</option><option> 1978</option><option> 1979</option><option> 1980</option><option> 1981</option><option> 1982</option><option> 1983</option><option> 1984</option><option> 1985</option><option> 1986</option><option> 1987</option><option> 1988</option><option> 1989</option><option> 1990</option><option> 1991</option><option> 1992</option><option> 1993</option><option> 1994</option><option> 1995</option><option> 1995</option><option> 1996</option><option> 1997</option><option> 1998</option><option> 1999</option><option> 2000</option><option> 2001</option><option> 2002</option><option> 2003</option><option> 2004</option><option> 2005</option><option> 2006</option><option> 2007</option><option> 2008</option><option> 2009</option><option> 2010</option><option> 2011</option> | ||
| 247 : | </select> | ||
| 248 : | egutierrez | 9 | <select name="mes" id="mes" onblur="seleccion_mes('mes')" onchange="cambiaF(document.frm.dia)"> |
| 249 : | egutierrez | 7 | <option selected>mes</option> |
| 250 : | <option value="01">enero </option> | ||
| 251 : | <option value="02">febrero</option> | ||
| 252 : | <option value="03">marzo</option> | ||
| 253 : | <option value="04">abril</option> | ||
| 254 : | <option value="05">mayo</option> | ||
| 255 : | <option value="06">junio</option> | ||
| 256 : | <option value="07">julio</option> | ||
| 257 : | <option value="08">agosto</option> | ||
| 258 : | <option value="09">septiembre</option> | ||
| 259 : | <option value="10">octubre</option> | ||
| 260 : | <option value="11">noviembre</option> | ||
| 261 : | <option value="12">diciembre</option> | ||
| 262 : | </select> | ||
| 263 : | egutierrez | 9 | <select name="dia" id="dia" onblur="seleccion_dia('dia')"><option selected> dia</option> |
| 264 : | egutierrez | 7 | </select> |
| 265 : | </td> | ||
| 266 : | </tr> | ||
| 267 : | <tr> | ||
| 268 : | <td align="right">* País</td> | ||
| 269 : | egutierrez | 9 | <td><select name="pais" id="pais" onblur="seleccion_pais('pais')" onchange="cambiaE(document.frm.estado)"> |
| 270 : | egutierrez | 7 | <option selected >-Seleccione País-</option> |
| 271 : | <?php | ||
| 272 : | $sql= "select*from pais"; | ||
| 273 : | $cursor = mysql_query($sql); | ||
| 274 : | $num_reg=mysql_num_rows($cursor); | ||
| 275 : | |||
| 276 : | for($p=0;$p<$num_reg;$p++){ | ||
| 277 : | echo '<option>'; | ||
| 278 : | |||
| 279 : | $pais=mysql_result($cursor,$p,'nombre_pais'); | ||
| 280 : | |||
| 281 : | echo $pais; | ||
| 282 : | echo '<br>'; | ||
| 283 : | |||
| 284 : | echo '</option>'; | ||
| 285 : | } | ||
| 286 : | mysql_close($link); | ||
| 287 : | ?> | ||
| 288 : | </select> | ||
| 289 : | </td> | ||
| 290 : | </tr> | ||
| 291 : | <tr> | ||
| 292 : | <td align="right">* Estado</td> | ||
| 293 : | egutierrez | 9 | <td><select name="estado" id="estado" onblur="seleccion_estado('estado')"> |
| 294 : | egutierrez | 7 | <option selected >-Seleccione Estado-</option> |
| 295 : | </select> | ||
| 296 : | </td> | ||
| 297 : | </tr> | ||
| 298 : | <tr> | ||
| 299 : | <td align="right">* Instituto Educativo</td> | ||
| 300 : | egutierrez | 9 | <td><input name="instituto" id="instituto" type="text" onblur="espacios_vacios('instituto')" onkeypress="return solo_letras(event)"/></td> |
| 301 : | egutierrez | 7 | </tr> |
| 302 : | <tr> | ||
| 303 : | <td align="right">* Tipo de Usuario <br /><br /><br /><br /><br /> </td> | ||
| 304 : | <td> | ||
| 305 : | <input type="radio" name="id_tipo_usurio" value="1"/>Estudiante<br /> | ||
| 306 : | <input type="radio" name="id_tipo_usurio" value="2"/>Docente<br /> | ||
| 307 : | <input type="radio" name="id_tipo_usurio" value="3"/>Autodidacta-Emprendedor<br /> | ||
| 308 : | <input type="radio" name="id_tipo_usurio" value="4"/>Diseñador Instruccional<br /> | ||
| 309 : | </td> | ||
| 310 : | </tr> | ||
| 311 : | </table> | ||
| 312 : | </div> | ||
| 313 : | </div> | ||
| 314 : | <div class="post"> | ||
| 315 : | <div class="entry"> | ||
| 316 : | <table align="center"><tr><td> | ||
| 317 : | egutierrez | 9 | <br /><input type="submit" value="Crear Cuenta" name="crearusuario" title="Crear Usuario"/></td></tr></table> |
| 318 : | <br /><p>Recuerde los campos marcados con (*) son obligatorios.</p> | ||
| 319 : | egutierrez | 7 | </div> |
| 320 : | </div> | ||
| 321 : | <div style="clear: both;"> </div> | ||
| 322 : | </div> | ||
| 323 : | <!-- end #content --> | ||
| 324 : | <!--Contenido de izquierda--> | ||
| 325 : | <div id="sidebar" align="center"> | ||
| 326 : | <div align="center"> | ||
| 327 : | <a href="http://www.cenditel.gob.ve"><img src="/repositorio_rea/imagenes/logocenditel.jpg" id="cenditel" title="Principal | Cenditel Nodo Mérida" ></a> | ||
| 328 : | </div><br /><br /> | ||
| 329 : | egutierrez | 9 | <!--Inicio de Menu--> |
| 330 : | egutierrez | 7 | <div align="center" id="menu"> |
| 331 : | egutierrez | 9 | <ul> |
| 332 : | <li class="nivel1 primera"><a href="index.html" title="Página Principal" class="nivel1"><img src="/repositorio_rea/imagenes/inicio.png"></img></a> | ||
| 333 : | <!--[if lte IE 6]><a href="#" class="nivel1ie">Opción 1<table class="falsa"><tr><td><![endif]--> | ||
| 334 : | </li> | ||
| 335 : | <li class="nivel1"><a href="" class="nivel1"><img src="/repositorio_rea/imagenes/usuario.png"></img></a> | ||
| 336 : | <!--[if lte IE 6]><a href="#" class="nivel1ie">Opción 2<table class="falsa"><tr><td><![endif]--> | ||
| 337 : | <ul> | ||
| 338 : | <li class="primera"><a href="crear-usuario.php" title="Crear Usuario"><img src="/repositorio_rea/imagenes/crear usuario.png"></img></a></li> | ||
| 339 : | <li><a href="inicio-sesion.php" title="Iniciar Sesión"><img src="/repositorio_rea/imagenes/iniciar sesion.png"></img></a></li> | ||
| 340 : | <li><a href="menu-usuario.php" title="¿Qué desea hacer?"><img src="/repositorio_rea/imagenes/operaciones.png"></img></a></li> | ||
| 341 : | </ul> | ||
| 342 : | <!--[if lte IE 6]></td></tr></table></a><![endif]--> | ||
| 343 : | </li> | ||
| 344 : | <li class="nivel1"><a href="" class="nivel1"><img src="/repositorio_rea/imagenes/recursos educativos.png"></img></a> | ||
| 345 : | <!--[if lte IE 6]><a href="#" class="nivel1ie">Opción 3<table class="falsa"><tr><td><![endif]--> | ||
| 346 : | <ul> | ||
| 347 : | <li class="primera"><a href="consulta-rea.php" title="Consultar REA"><img src="/repositorio_rea/imagenes/consulta rea.png"></img></a></li> | ||
| 348 : | <li><a href="agregar-rea.php" title="Insertar REA"><img src="/repositorio_rea/imagenes/inserta rea.png"></img></a></li> | ||
| 349 : | </ul> | ||
| 350 : | <!--[if lte IE 6]></td></tr></table></a><![endif]--> | ||
| 351 : | </li> | ||
| 352 : | </ul> | ||
| 353 : | |||
| 354 : | </div> | ||
| 355 : | |||
| 356 : | <!--Fin del menu--> | ||
| 357 : | egutierrez | 7 | <br /> |
| 358 : | <br /> | ||
| 359 : | <br /> | ||
| 360 : | <br /> | ||
| 361 : | <!-- enlace con el blog de RADECON --> | ||
| 362 : | <div> | ||
| 363 : | <table style="background-color:transparent;border: 0px" border="0" width="170px" align="center" id="linkradecon"> | ||
| 364 : | <tr><td bordercolor="white" align="center"> | ||
| 365 : | <a href="http://radecon.cenditel.gob.ve"><img src="/repositorio_rea/imagenes/radecon.jpg" id="radecon" title="Red de defensa del conocimiento" width="170px"></a> | ||
| 366 : | <a href="http://radecon.cenditel.gob.ve/"><b><b>Red de defensa del conocimiento</b></h5></a> | ||
| 367 : | </td></tr></table> | ||
| 368 : | </div> | ||
| 369 : | </div> | ||
| 370 : | |||
| 371 : | <!-- end #sidebar --> | ||
| 372 : | <div style="clear: both;"> </div> | ||
| 373 : | </div> | ||
| 374 : | </div> | ||
| 375 : | </div> | ||
| 376 : | <!-- end #page --> | ||
| 377 : | </div> | ||
| 378 : | <div id="footer"> | ||
| 379 : | <HR WIDTH=1024px> | ||
| 380 : | <p>FUNDACIÓN CENTRO NACIONAL DE DESARROLLO E INVESTIGACIÓN EN TECNOLOGÍAS LIBRES (CENDITEL) Avenida Alberto Carnevali, vÍa La Hechicera, Edificio CENDITEL. TelÉfono: (0274)6574336 - 6574958. Apartado Postal: 078. CÓdigo Postal: 5101A. RIF: G-20007349-7. MÉrida-Venezuela</p> | ||
| 381 : | </div> | ||
| 382 : | <!-- end #footer --> | ||
| 383 : | </body> | ||
| 384 : | </html> |
| root@fsl.cenditel.gob.ve | ViewVC Help |
| Powered by ViewVC 1.0.0 |