Hello,
My problem with this code is, that it seems to always open the window with the height that I defined the first time I opened the window.
Changeing y1 does not change the height of the window.
Even after the window was closed.
Where do I go wrong or what solution do you have?
Code:
function CyOpen(a,y1) {
S = "window.html?../fotos/a" + a;
X=window.open(S ,"sill","width=500,height=" + y1 + ",top=10,left=10,resizeable=yes,scrollbars=yes")
X.focus()
My problem with this code is, that it seems to always open the window with the height that I defined the first time I opened the window.
Changeing y1 does not change the height of the window.
Even after the window was closed.
Where do I go wrong or what solution do you have?