Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/01/2002, 10:20
jlchp
 
Fecha de Ingreso: diciembre-2001
Mensajes: 62
Antigüedad: 22 años, 5 meses
Puntos: 0
boton que abre otra ventana

Lo que yo pretendo es que cuando presione sobre botón me habra otra ventana. Tengo el siguiente código:

<SCRIPT LANGUAGE="JavaScript">
function abrir(theURL,winName,features,param,target)
{
theURL = theURL + param;
window.open(theURL,winName,features,target);
}
</script>

<form name="form1" method="post" action="">
<input name=Submit type=submit value=Enviar class="Texto" onClick="abrir('../ARTICULOS/enviar.asp?envio=','','location=0,width=1,height=1 ,top=0,left=0',2,'_blank')">
</form>

Pero lo que obtengo es que me habre la ventana en cuestion sobre la que tengo abierta.

Necesito ayuda, gracias.