<script language=javascript>
function Abrir_ventana (pagina) {
var opciones= "toolbar=YES, location=YES, directories=YES, status=YES, menubar=YES, scrollbars=YES, resizable=yes, width=700, height=700,top=105,left=70";
window.open(pagina,"",opciones)
}
function ventanaSecundaria (URL){
ventana=window.open(URL,"ventana1","width=650, height=488, scrollbars=yes, menubar=yes, location=yes, resizable=yes")
ventana.focus()
}
</script>
Pero no me funciona, se me queda la ventana pequeña y me da error.
Las funciones las llamo desde:
<%
If encontrado="si" then
Response.Cookies("Usuario")("nombre") = request.form("nombre")
Response.Cookies("Usuario")("contrasena") = request.form("contrasena")
%>
LLAMO A LA PRIMERA FUNCION Y NO FUNCIONA
ventanaSecundaria(frm_final_carpetas.ASP)
HE PROBADO TAMBIEN CON ESTA Y TAMPOCO
Abrir_ventana("frm_final_carpetas.ASP");
TAMBIEN HE PROBADA A LLAMAR A LAS FUNCIONES DENTRO DEL CODIGO <% ............%> Y TAMPOCO ME FUNCIONA.
POR FAVOR ALGUIEN Q ME PUEDE HECHAR UNA MANO.

MUCHAS GRACIAS