Lo he logrado hacer usando javascript pero en un "demo", es decir usando un link en una página html sencilla.
Código HTML:
<head> <title>Envia tu archivo</title> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin function popUp(URL) { day = new Date(); id = day.getTime(); eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=460,height=250,left = 189,top = 175');"); } // End --> </script> </head> <body> <form> <input type=button value="Abrir Ventana Pop Up" onClick="javascript:popUp('form.html')"> </form> </body> </html>
gracias