amacfarl
10-20-2003, 10:00 AM
Hi All
I am using the following function
function sellerProducts(seller) {
var page = "rpProducts.jsp?seller=" + seller;
features = "" + "width=" + 770 + "," +
"height=" + 400 + "," +
"top=" + 50 + "," + "left=" + 50 + "";
var popup = window.open( page, 'fullPopup', features );
popup.focus();
}
Is there any way of using FORMs to display a popup window. The reason is I want to post more variables than just the seller name.
Form would be perfect, however can I still do it with all the functionality of setting window size etc.. etc..
Thanks in advance
Angus
I am using the following function
function sellerProducts(seller) {
var page = "rpProducts.jsp?seller=" + seller;
features = "" + "width=" + 770 + "," +
"height=" + 400 + "," +
"top=" + 50 + "," + "left=" + 50 + "";
var popup = window.open( page, 'fullPopup', features );
popup.focus();
}
Is there any way of using FORMs to display a popup window. The reason is I want to post more variables than just the seller name.
Form would be perfect, however can I still do it with all the functionality of setting window size etc.. etc..
Thanks in advance
Angus