Ver Mensaje Individual
  #3 (permalink)  
Antiguo 19/01/2002, 03:14
unKnown
Usuario no validado
 
Fecha de Ingreso: julio-2001
Mensajes: 766
Antigüedad: 22 años, 10 meses
Puntos: 0
Re: enviar informacion al popup

yo lo haria asi

simulando el metodo get

<script language="Javascript">
var uno, dos, tres, url;
function redireccionar(form){
uno = form.uno.value
dos = form.dos.value
tres = form.tres.value
url = "valores.php?valor="+ uno +"&valor2="+ dos +"&valor3="+tres+"";
window.open(""+url+"","&q uot;, "width=350,height=350")
}
</script>

<form name="forma" >
Primer valor
<input name="uno" type="text" value="">
segundo valor
<input name="dos" type="text" value="">
tercer valor
<input name="tres" type="text" value="">
<input type="button" onclick="redireccionar(this.form)"value= "enviar">
</form>