ssskaya
01-17-2003, 06:33 PM
I use the following javascript to open a new window from the page.
-------------------------------
//Begin openup function
function openup(newpage, name) {
window.open(newpage, name, "width=723, height=450, scrollbars=yes, resizable=no, toolbar=no, status=no, location=no, menubar=no");
}
// END openup function
------------------------------
It all works fine.
But now I have another button in the page that I want to be opened in a new page BUT IN DIFFERENT DIMENTIONS.
How do I put two openup functions with different window dimentions without causing a conflict?
Thanks!
-------------------------------
//Begin openup function
function openup(newpage, name) {
window.open(newpage, name, "width=723, height=450, scrollbars=yes, resizable=no, toolbar=no, status=no, location=no, menubar=no");
}
// END openup function
------------------------------
It all works fine.
But now I have another button in the page that I want to be opened in a new page BUT IN DIFFERENT DIMENTIONS.
How do I put two openup functions with different window dimentions without causing a conflict?
Thanks!