|
Hello,
I have a problem writing a window that is declared in another function. ie:
function doIt()
{
hWin=window.open("", "something", "height=550, width=800");
show(hWin)
}
function show(h)
{
h.document.write("hi")
}
I am not sure I can pass a window as a parameter...
thanks for reply,
Cindy
|