Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/10/2006, 23:49
php.java.jsp
 
Fecha de Ingreso: octubre-2004
Mensajes: 128
Antigüedad: 19 años, 7 meses
Puntos: 2
De acuerdo

Código:
<script type="text/javascript">

function enviar(){
	ventana = window.open("","ventana","width=660px,height=500px");
	document.form1.target = "ventana";
	return true;
}

</script>



<form name="form1" action="popup.php" method="post" onsubmit="return enviar()">
<input name="nombre" type="text" id="nombre">
<input type="submit" name="Submit" value="Enviar">
</form>

Última edición por php.java.jsp; 17/10/2006 a las 20:14