
16/08/2004, 04:12
|
 | Usuario no validado | | Fecha de Ingreso: marzo-2002 Ubicación: Buenos Aires
Mensajes: 1.300
Antigüedad: 23 años, 1 mes Puntos: 8 | |
onRelease con un window.open Hola tengo esto
-----
on (release) {
getURL("javascript:window.open('http://www.ethverger-inmobiliaria.com/mailform/provaform.asp','FORMAIL','width=200,height=200,top ='+((screen.height/2)-(100))+',left='+((screen.width/2)-(100))+',toolbar=NO,scrollbars=NO,resizable=NO,men ubar=NO,status=NO,directories=NO,location=NO'); void(0);");
}
-------
pero quiero que me envie unas variables de un fomulario
y he puesto esto
----
on (release) {
getURL("javascript:window.open('http://www.ethverger-inmobiliaria.com/mailform/provaform.asp','FORMAIL','width=200,height=200,top ='+((screen.height/2)-(100))+',left='+((screen.width/2)-(100))+',toolbar=NO,scrollbars=NO,resizable=NO,men ubar=NO,status=NO,directories=NO,location=NO'); void(0);","", "POST");
}
he puesto el post
pero no me envia las variables correctamente
de otra manera haciendo
onRelease{
getURL("http://www.ethverger-inmobiliaria.com/mailform/aspemail.asp", "", "POST");
}
me los envia correctamente
cual puede ser el error?
gracias |