-//ARMO LA TABLA{{{
-$TABLA->addRow(array($interno->getName().':' , $interno));
-$TABLA->addRow(array($usuario->getName().':' , $usuario));
-$TABLA->addRow(array($codep->getName().':' , $codep));
-$TABLA->addRow(array($dependencia->getName().':', $dependencia));
-$TABLA->addRow(array($edificio->getName().':' , $edificio));
-$TABLA->addRow(array($piso->getName().':' , $piso));
-$TABLA->addRow(array($oficina->getName().':' , $oficina));
-$TABLA->addRow(array($ordenar->getName().':' , $ordenar));
+//ARMO LA TABLA {{{
+$TABLA->addRow(array($LINK_1->toHtml(), $LINK_2->toHtml(), $TELECO->toHtml()));
+$TABLA->updateColAttributes(0,'width="24" height="25"');
+$TABLA->updateColAttributes(1,'width="60" height="25"');
+$TABLA->updateColAttributes(2,'width="676" class="txt_derecha" height="25"');
+$TABLA->addRow(array($FORM), 'colspan="3"');
+//}}}
+//AGREGO EL JAVASCRIPT DE VALIDACION {{{
+//Este js esta copiado del epl original, ya que con los campos del formulario
+//llamados de la misma manera las reglas de validacion ya se cumplen.
+$JS = <<<EOT
+function validar(theForm)
+{
+if(theForm.interno.value=="" && theForm.nombre.value=="" && theForm.codep.value=="" && theForm.piso.value=="" && theForm.oficina.value==""
+&& (theForm.dependencia.value=="" || theForm.dependencia.value=='--Ingrese una palabra clave--')
+&& theForm.edificio.options[theForm.edificio.selectedIndex].value=="-")
+{
+ alert('Indique una opción de búsqueda');theForm.interno.focus();return(false);
+}
+
+if(theForm.interno.value=="" && theForm.nombre.value=="" && theForm.codep.value=="" && theForm.piso.value=="" && theForm.oficina.value==""
+&& (theForm.dependencia.value=="" || theForm.dependencia.value=='--Ingrese una palabra clave--')
+&& theForm.edificio.options[theForm.edificio.selectedIndex].value!="-")
+{
+ alert('Indique un párametro adicional para la búsqueda');theForm.edificio.focus();return(false);
+}
+
+if(theForm.interno.value=="" && theForm.nombre.value=="" && theForm.codep.value=="" && theForm.piso.value!="" && theForm.oficina.value==""
+&& (theForm.dependencia.value=="" || theForm.dependencia.value=='--Ingrese una palabra clave--')
+&& theForm.edificio.options[theForm.edificio.selectedIndex].value=="-")
+{
+ alert('Indique el edificio');theForm.edificio.focus();return(false);
+}
+
+if (theForm.dependencia.value=="" || theForm.dependencia.value=='--Ingrese una palabra clave--')
+ {theForm.dependencia.value='-';}