Pop-up Style Window

S

Steven

I need a little help figuring this one out, so thanks in advance...

I am having a page with several links on the page. When a link is clicked,
I want a small window to put up in say the upper left of the screen, with
like a "close window" link in it...I see these on all kinds of websites.
How can I do this?

Thanks again,
Steve
 
S

Steve Easton

The small window with "Close Window" in it
won't close the large window that was opened
when the link was clicked, it will only close
the small window.!!

If you want a clickable link to close a window
use this:

<input type="button" value="Close Page" name="Closeup"
Onclick="parent.close()">
 
C

chris leeds

<form><input type="button" value="Close
Window"onClick="window.close()"></form>
 
Top