JSP forward POST requests to new window

jrefactors_at_hotmail.com
Date: 12/29/04


Date: 28 Dec 2004 22:25:56 -0800

request.getRequestDispatcher(url).forward(request,response);

will forward the POST request from previous page to the next page, but
they are on the same window.

I want to forward the POST request to a new window:

i.e.
window.open("http://localhost"+"<=url>",'url_win','menubar=no,scrollbars=no,width=800,height=800');
Is it possible? any ideas?? thanks!!