Well, you're going to have limitations with passing things around in a URL.
You need to post your JS function to comp.lang.javascript, and ask them how
to modify the script so that it POSTs the form data to the new pop-up
window.
Justin French
on 18/08/02 7:44 PM, Mantas Kriauciunas ([EMAIL
I just wrote something exactly like this today:
function news_window (headline_str)
{
var headline_link = "/story.asp?headline=" + escape(headline_str);
window.open(headline_link,'','scrollbars=yes,resizable=yes');
}
Now, if I needed to pass along more variables, I'd just add them to the
news_
2 matches
Mail list logo