 
			
				06/04/2005, 06:33
			
			
			     |  
        |     |    |    Fecha de Ingreso: septiembre-2002  Ubicación: Buenos Aires - Argentina  
						Mensajes: 220
					  Antigüedad: 23 años, 1 mes Puntos: 0     |        |  
  |      muestro un ejemplo del mismo   
el formulario seria este   
3.htm   
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd"> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
<title>Documento sin título</title> 
  <script language="JavaScript"> 
   function abrirVentana() { 
    open("2.htm","miVentana", "toolbar=no,location=no,scrollbars=yes,directories  =no,status=no,menubar=no,resizable=no,width=650,he  ight=600"); 
   } 
  </script>  
</head>   
<body> 
<form name="frm" action="ingresoremedy1.asp" method="POST" onsubmit="document.forms[0].enviar.value='Generando Incidencia';document.forms[0].enviar.disabled=true;"> 
<table> 
   <tr> 
      <td width="27%" height="20"> Centro de costos</td> 
      <td width="73%" height="20"> 
          <input name="CECO" type="text" size="50" autocomplete="off">  
          <a href="#" onclick="abrirVentana()">Buscar</a> 
      </td> 
</table> 
</form> 
</body> 
</html>   
y el popup como un emplo este  2.htm   
<a href="#" onclick="opener.document.forms['frm']['ceco'].value='100'; window.close(); return false">hola</a>   
donde si hago clic en el link me tira error     
				__________________  <% Viru %>           |